From d0521071f5f0fe6866da77ef1b1669f28f50a343 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 8 Sep 2009 06:08:07 +0000 Subject: lit needs bash for tcl-as-sh execution, we use set -o pipefail. llvm-svn: 81197 --- llvm/utils/lit/TestRunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/utils/lit/TestRunner.py') diff --git a/llvm/utils/lit/TestRunner.py b/llvm/utils/lit/TestRunner.py index 5c1e8ea5be1..3e4b2c6cebe 100644 --- a/llvm/utils/lit/TestRunner.py +++ b/llvm/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) -- cgit v1.2.3