diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-08 06:08:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-08 06:08:07 +0000 |
commit | d0521071f5f0fe6866da77ef1b1669f28f50a343 (patch) | |
tree | 64f27400c90a563e5c77600e9d18ce6bc37b8e36 /llvm/utils | |
parent | 520a7f92501f8e88738ba74d290b9f01dc89af69 (diff) | |
download | bcm5719-llvm-d0521071f5f0fe6866da77ef1b1669f28f50a343.tar.gz bcm5719-llvm-d0521071f5f0fe6866da77ef1b1669f28f50a343.zip |
lit needs bash for tcl-as-sh execution, we use set -o pipefail.
llvm-svn: 81197
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/TestRunner.py b/llvm/utils/lit/TestRunner.py index 5c1e8ea5be1..3e4b2c6cebe 100644 --- a/llvm/utils/lit/TestRunner.py +++ b/llvm/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) |