tests/dummyssh
changeset 15768 cdf9c43445df
parent 14186 8513bd2e7259
child 19320 f266cb3f1c2b
--- a/tests/dummyssh	Mon Dec 26 16:54:43 2011 +0100
+++ b/tests/dummyssh	Mon Dec 26 15:30:43 2011 +0100
@@ -16,5 +16,9 @@
     log.write(" %d:%s" % (i+1, arg))
 log.write("\n")
 log.close()
-r = os.system(sys.argv[2])
+hgcmd = sys.argv[2]
+if os.name == 'nt':
+    # hack to make simple unix single quote quoting work on windows
+    hgcmd = hgcmd.replace("'", '"')
+r = os.system(hgcmd)
 sys.exit(bool(r))