changeset 1057:312c4bb96e68

tests: update globs so ssh command injection tests pass on macOS
author Kevin Bullock <kbullock@ringworld.org>
date Mon, 23 Oct 2017 14:41:36 -0500
parents 3a7daf4e1cae
children 20b6df4e9434
files tests/test-git-clone.t tests/test-pull.t tests/test-push.t
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-git-clone.t
+++ b/tests/test-git-clone.t
@@ -51,8 +51,8 @@
   abort: potentially unsafe hostname: '-oProxyCommand=rm${IFS}nonexistent'
   [255]
   $ hg clone 'git+ssh://fakehost|rm${IFS}nonexistent/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7crm%24%7bifs%7dnonexistent port 22: * (glob)
+  ssh: * fakehost%7crm%24%7bifs%7dnonexistent* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.
   $ hg clone 'git+ssh://fakehost%7Crm${IFS}nonexistent/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7crm%24%7bifs%7dnonexistent port 22: * (glob)
+  ssh: * fakehost%7crm%24%7bifs%7dnonexistent* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.
--- a/tests/test-pull.t
+++ b/tests/test-pull.t
@@ -366,8 +366,8 @@
   abort: potentially unsafe hostname: '-oProxyCommand=rm nonexistent'
   [255]
   $ hg pull 'git+ssh://fakehost|shellcommand/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7cshellcommand port 22: * (glob)
+  ssh: * fakehost%7cshellcommand* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.
   $ hg pull 'git+ssh://fakehost%7Cshellcommand/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7cshellcommand port 22: * (glob)
+  ssh: * fakehost%7cshellcommand* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.
--- a/tests/test-push.t
+++ b/tests/test-push.t
@@ -211,8 +211,8 @@
   abort: potentially unsafe hostname: '-oProxyCommand=rm nonexistent'
   [255]
   $ hg push 'git+ssh://fakehost|rm%20nonexistent/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7crm%20nonexistent port 22: * (glob)
+  ssh: * fakehost%7crm%20nonexistent* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.
   $ hg push 'git+ssh://fakehost%7Crm%20nonexistent/path' 2>&1 >/dev/null | grep -v ^devel-warn:
-  ssh: connect to host fakehost%7crm%20nonexistent port 22: * (glob)
+  ssh: * fakehost%7crm%20nonexistent* (glob)
   abort: git remote error: The remote server unexpectedly closed the connection.