aboutsummaryrefslogtreecommitdiff
path: root/utils/lit/TestRunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lit/TestRunner.py')
-rw-r--r--utils/lit/TestRunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/TestRunner.py b/utils/lit/TestRunner.py
index 5c1e8ea5be..3e4b2c6ceb 100644
--- a/utils/lit/TestRunner.py
+++ b/utils/lit/TestRunner.py
@@ -213,7 +213,7 @@ def executeTclScriptInternal(test, litConfig, tmpBase, commands, cwd):
print >>sys.stdout
return '', '', 0
- command = ['/bin/sh', script]
+ command = ['/bin/bash', script]
out,err,exitCode = executeCommand(command, cwd=cwd,
env=test.config.environment)