We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143f3bf commit f47a5dfCopy full SHA for f47a5df
llvm/utils/lit/tests/Inputs/shtest-define/lit.cfg
@@ -1,7 +1,10 @@
1
import lit.formats
2
config.name = 'shtest-define'
3
config.suffixes = ['.txt']
4
-config.test_format = lit.formats.ShTest()
+# Use lit's internal shell to avoid shell portability issues within RUN lines
5
+# (e.g., for 'echo' commands in Windows). Those issues should be orthogonal to
6
+# the substitution behavior we are trying to test.
7
+config.test_format = lit.formats.ShTest(execute_external=False)
8
config.test_source_root = None
9
config.test_exec_root = None
10
0 commit comments