lit needs bash for tcl-as-sh execution, we use set -o pipefail.

llvm-svn: 81197
This commit is contained in:
Daniel Dunbar 2009-09-08 06:08:07 +00:00
parent 520a7f9250
commit d0521071f5
1 changed files with 1 additions and 1 deletions

View File

@ -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)