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 | f072432e2613d06da2d839eee062f5f116fb8191 (patch) | |
tree | 680efb9c70cd28edf33cbe4ebcb5620d51549cd6 | |
parent | af0b6cdb699c81529cf35f02160d790a64e3fec3 (diff) |
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
-rw-r--r-- | utils/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/TestRunner.py b/utils/lit/TestRunner.py index 5c1e8ea5be1..3e4b2c6cebe 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) |