File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 18
18
# name: The name of this test suite.
19
19
config .name = "Clang"
20
20
21
- # TODO: Consolidate the logic for turning on the internal shell by default for all LLVM test suites.
22
- # See https://github.com/llvm/llvm-project/issues/106636 for more details.
23
- #
24
- # We prefer the lit internal shell which provides a better user experience on failures
25
- # and is faster unless the user explicitly disables it with LIT_USE_INTERNAL_SHELL=0
26
- # env var.
27
- use_lit_shell = True
28
- lit_shell_env = os .environ .get ("LIT_USE_INTERNAL_SHELL" )
29
- if lit_shell_env :
30
- use_lit_shell = lit .util .pythonize_bool (lit_shell_env )
31
-
32
21
# testFormat: The test format to use to interpret tests.
33
22
#
34
23
# For now we require '&&' between commands, until they get globally killed and
35
24
# the test runner updated.
36
- config .test_format = lit .formats .ShTest (execute_external = not use_lit_shell )
25
+ config .test_format = lit .formats .ShTest (not llvm_config . use_lit_shell )
37
26
38
27
# suffixes: A list of file extensions to treat as test files.
39
28
config .suffixes = [
You can’t perform that action at this time.
0 commit comments