[PATCH 16 of 19] run-tests: don't quote command names - that do apparently not work with msys

Mads Kiilerich mads at kiilerich.com
Sun Nov 6 20:41:06 CST 2011


# HG changeset patch
# User Mads Kiilerich <mads at kiilerich.com>
# Date 1320632710 -3600
# Node ID 3c4cd6af667f592640e5183b56690c6c92148aee
# Parent  3d19c2436739dd841ff09b32ae5c74ee0f435462
run-tests: don't quote command names - that do apparently not work with msys

diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -640,7 +640,7 @@
             os.write(fd, l)
         os.close(fd)
 
-        cmd = '"%s" "%s"' % (options.shell, name)
+        cmd = '%s "%s"' % (options.shell, name)
         vlog("# Running", cmd)
         exitcode, output = run(cmd, wd, options, replacements)
         # do not merge output if skipped, return hghave message instead


More information about the Mercurial-devel mailing list