##// END OF EJS Templates
run-tests: don't quote command names - that do apparently not work with msys
Mads Kiilerich -
r15450:90c15a75 default
parent child Browse files
Show More
@@ -643,7 +643,7 b' def tsttest(test, wd, options, replaceme'
643 os.write(fd, l)
643 os.write(fd, l)
644 os.close(fd)
644 os.close(fd)
645
645
646 cmd = '"%s" "%s"' % (options.shell, name)
646 cmd = '%s "%s"' % (options.shell, name)
647 vlog("# Running", cmd)
647 vlog("# Running", cmd)
648 exitcode, output = run(cmd, wd, options, replacements)
648 exitcode, output = run(cmd, wd, options, replacements)
649 # do not merge output if skipped, return hghave message instead
649 # do not merge output if skipped, return hghave message instead
General Comments 0
You need to be logged in to leave comments. Login now