# HG changeset patch # User Mads Kiilerich # Date 1327019056 -3600 # Node ID 0a2285b90e22a0a2d5b9178dc9a80a673e079cdf # Parent 23c6e5d22e79a381a5a1a6efdb5a8a6d105f0419 tests: let run-tests.py default to use 'sh' in $PATH instead of '/bin/sh' This makes it easier to run tests on systems that have a usable sh in the search path but not in the standard location. [ original upstream message ] diff -r 23c6e5d22e79 -r 0a2285b90e22 tests/run-tests.py --- a/tests/run-tests.py Sat Jan 14 01:55:50 2012 +0100 +++ b/tests/run-tests.py Fri Jan 20 01:24:16 2012 +0100 @@ -98,7 +98,7 @@ 'jobs': ('HGTEST_JOBS', 1), 'timeout': ('HGTEST_TIMEOUT', 180), 'port': ('HGTEST_PORT', 20059), - 'shell': ('HGTEST_SHELL', '/bin/sh'), + 'shell': ('HGTEST_SHELL', 'sh'), } def parselistfiles(files, listtype, warn=True):