# HG changeset patch # User Mads Kiilerich # Date 1320632710 -3600 # Node ID 4d2cc32c6d97d55a21398ab3f6d89e0b235e3fb2 # Parent 9cd561108da40a154b249ce027aae067e7b6776d run-tests: don't quote command names - that do apparently not work with msys [ original upstream message ] diff -r 9cd561108da4 -r 4d2cc32c6d97 tests/run-tests.py --- a/tests/run-tests.py Mon Nov 07 03:25:10 2011 +0100 +++ b/tests/run-tests.py Mon Nov 07 03:25:10 2011 +0100 @@ -643,7 +643,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