[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / utils / lit / tests / Inputs / shtest-recursive-substitution / does-not-substitute-within-limit / lit.cfg
blobf772b01b4d4d37cf22f518db2bb322f9ba928a35
1 import lit.formats
3 config.name = "does-not-substitute-within-limit"
4 config.suffixes = [".py"]
5 config.test_format = lit.formats.ShTest()
6 config.test_source_root = None
7 config.test_exec_root = None
9 config.substitutions = [
10     ("%rec1", "STOP"),
11     ("%rec2", "%rec1"),
12     ("%rec3", "%rec2"),
13     ("%rec4", "%rec3"),
14     ("%rec5", "%rec4"),
17 config.recursiveExpansionLimit = 2