]> granicus.if.org Git - clang/commitdiff
Always execute tests internally on Windows.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 22 Sep 2009 10:08:03 +0000 (10:08 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 22 Sep 2009 10:08:03 +0000 (10:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82542 91177308-0d34-0410-b5e6-96231b3b80d8

test/lit.cfg

index 450b6149223c08da72058e641f5d85bcdc27004c..2f6e945792052d3e5268b95a9e478d5580943858 100644 (file)
@@ -1,6 +1,7 @@
 # -*- Python -*-
 
 import os
+import platform
 
 # Configuration file for the 'lit' test runner.
 
@@ -11,7 +12,8 @@ config.name = 'Clang'
 #
 # 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.