summaryrefslogtreecommitdiff
path: root/utils/lit
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-08 06:08:07 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-08 06:08:07 +0000
commitf072432e2613d06da2d839eee062f5f116fb8191 (patch)
tree680efb9c70cd28edf33cbe4ebcb5620d51549cd6 /utils/lit
parentaf0b6cdb699c81529cf35f02160d790a64e3fec3 (diff)
downloadllvm-f072432e2613d06da2d839eee062f5f116fb8191.tar.gz
llvm-f072432e2613d06da2d839eee062f5f116fb8191.tar.bz2
llvm-f072432e2613d06da2d839eee062f5f116fb8191.tar.xz
lit needs bash for tcl-as-sh execution, we use set -o pipefail.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-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)