From: Daniel Dunbar Date: Tue, 8 Sep 2009 06:08:07 +0000 (+0000) Subject: lit needs bash for tcl-as-sh execution, we use set -o pipefail. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f072432e2613d06da2d839eee062f5f116fb8191;p=oota-llvm.git 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 --- 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)