# HG changeset patch # User Mads Kiilerich # Date 1321411514 -3600 # Node ID 34ebea1c49c9fa45ab39292b2037eea36101e549 # Parent e7fbd63e5a9838d7742cbbf5797bcc76a7126ec2 tests: use the specified shell for running old fashioned sh tests [ original upstream message ] diff -r e7fbd63e5a98 -r 34ebea1c49c9 tests/run-tests.py --- a/tests/run-tests.py Mon Nov 07 03:25:10 2011 +0100 +++ b/tests/run-tests.py Wed Nov 16 03:45:14 2011 +0100 @@ -508,7 +508,7 @@ return run(cmd, wd, options, replacements) def shtest(test, wd, options, replacements): - cmd = '"%s"' % test + cmd = '%s "%s"' % (options.shell, test) vlog("# Running", cmd) return run(cmd, wd, options, replacements)