# HG changeset patch # User Mads Kiilerich <mads@kiilerich.com> # Date 2011-11-07 02:25:10 # Node ID 90c15a7573df14d85716f4486f6779590d7ead55 # Parent f71d60da58fbb61929dca20a792ce381304e011e 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 @@ -643,7 +643,7 @@ def tsttest(test, wd, options, replaceme 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