Skip to content

Commit d2de4b8

Browse files
committed
[MLIR] Fix inverted logic of LIT_USE_INTERNAL_SHELL
1 parent 50f4168 commit d2de4b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use_lit_shell = True
2424
lit_shell_env = os.environ.get("LIT_USE_INTERNAL_SHELL")
2525
if lit_shell_env:
26-
use_lit_shell = not lit.util.pythonize_bool(lit_shell_env)
26+
use_lit_shell = lit.util.pythonize_bool(lit_shell_env)
2727

2828
config.test_format = lit.formats.ShTest(execute_external=not use_lit_shell)
2929

0 commit comments

Comments
 (0)