# -*- Python -*-
import os
+import platform
# Configuration file for the 'lit' test runner.
#
# 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.