##// END OF EJS Templates
tests: use the specified shell for running old fashioned sh tests
Mads Kiilerich -
r15517:9ec8569e default
parent child Browse files
Show More
@@ -508,7 +508,7 b' def pytest(test, wd, options, replacemen'
508 return run(cmd, wd, options, replacements)
508 return run(cmd, wd, options, replacements)
509
509
510 def shtest(test, wd, options, replacements):
510 def shtest(test, wd, options, replacements):
511 cmd = '"%s"' % test
511 cmd = '%s "%s"' % (options.shell, test)
512 vlog("# Running", cmd)
512 vlog("# Running", cmd)
513 return run(cmd, wd, options, replacements)
513 return run(cmd, wd, options, replacements)
514
514
General Comments 0
You need to be logged in to leave comments. Login now