summaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-22 10:08:03 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-22 10:08:03 +0000
commitb850ddd2ce2b6f4e223396fd160752f465b7ee29 (patch)
tree5d55794f00584d0410d31e1fd1b67369607b9708 /test/lit.cfg
parentcceef8b89ee2c26aa85d8d2c2a34ce2d75f85fd2 (diff)
Always execute tests internally on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82542 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 450b614922..2f6e945792 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -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.