Always execute tests internally on Windows.

llvm-svn: 82542
This commit is contained in:
Daniel Dunbar 2009-09-22 10:08:03 +00:00
parent 3967fca364
commit 79327b6efe
1 changed files with 3 additions and 1 deletions

View 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.