[llvm-commits] [llvm] r81197 - /llvm/trunk/utils/lit/TestRunner.py

Daniel Dunbar daniel at zuster.org
Mon Sep 7 23:08:08 PDT 2009


Author: ddunbar
Date: Tue Sep  8 01:08:07 2009
New Revision: 81197

URL: http://llvm.org/viewvc/llvm-project?rev=81197&view=rev
Log:
lit needs bash for tcl-as-sh execution, we use set -o pipefail.

Modified:
    llvm/trunk/utils/lit/TestRunner.py

Modified: llvm/trunk/utils/lit/TestRunner.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/TestRunner.py?rev=81197&r1=81196&r2=81197&view=diff

==============================================================================
--- llvm/trunk/utils/lit/TestRunner.py (original)
+++ llvm/trunk/utils/lit/TestRunner.py Tue Sep  8 01:08:07 2009
@@ -213,7 +213,7 @@
             print >>sys.stdout
             return '', '', 0
 
-        command = ['/bin/sh', script]
+        command = ['/bin/bash', script]
         out,err,exitCode = executeCommand(command, cwd=cwd,
                                           env=test.config.environment)
 





More information about the llvm-commits mailing list