forked from OSchip/llvm-project
Always execute tests internally on Windows.
llvm-svn: 82542
This commit is contained in:
parent
3967fca364
commit
79327b6efe
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue