forked from OSchip/llvm-project
lit needs bash for tcl-as-sh execution, we use set -o pipefail.
llvm-svn: 81197
This commit is contained in:
parent
520a7f9250
commit
d0521071f5
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue