[cfe-commits] r82542 - /cfe/trunk/test/lit.cfg

Daniel Dunbar daniel at zuster.org
Tue Sep 22 03:08:03 PDT 2009


Author: ddunbar
Date: Tue Sep 22 05:08:03 2009
New Revision: 82542

URL: http://llvm.org/viewvc/llvm-project?rev=82542&view=rev
Log:
Always execute tests internally on Windows.

Modified:
    cfe/trunk/test/lit.cfg

Modified: cfe/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=82542&r1=82541&r2=82542&view=diff

==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Tue Sep 22 05:08:03 2009
@@ -1,6 +1,7 @@
 # -*- Python -*-
 
 import os
+import platform
 
 # Configuration file for the 'lit' test runner.
 
@@ -11,7 +12,8 @@
 #
 # For now we require '&&' between commands, until they get globally killed and
 # the test runner updated.
-config.test_format = lit.formats.ShTest(execute_external = True,
+execute_external = platform.system() != 'Windows'
+config.test_format = lit.formats.ShTest(execute_external,
                                         require_and_and = True)
 
 # suffixes: A list of file extensions to treat as test files.





More information about the cfe-commits mailing list