Skip to content

Commit dd3f131

Browse files
authored
[bazel] Enable more lit self tests (#104285)
I assume the intent of the initial `*/*.py` was to also collect things in `*.py`, but that's not what bazel does unless you use `**/*.py` which is what we're doing now. A few of these tests fail so I explicitly disabled them until someone has time to debug.
1 parent 54154f9 commit dd3f131

File tree

1 file changed

+9
-2
lines changed
  • utils/bazel/llvm-project-overlay/llvm/utils/lit/tests

1 file changed

+9
-2
lines changed

utils/bazel/llvm-project-overlay/llvm/utils/lit/tests/BUILD.bazel

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,14 @@ expand_template(
3434
] + glob(["Inputs/**"]),
3535
)
3636
for src in glob(
37-
["*/*.py"],
38-
exclude = ["Inputs/**"],
37+
["**/*.py"],
38+
exclude = [
39+
"Inputs/**",
40+
"discovery.py", # TODO: debug and re-enable
41+
"max-time.py",
42+
"selecting.py",
43+
"shtest-recursive-substitution.py",
44+
"use-llvm-tool.py",
45+
],
3946
)
4047
]

0 commit comments

Comments
 (0)