1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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 ef96a8b64d
commit ca1a6d222f

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)