diff --git a/utils/bazel/llvm-project-overlay/llvm/utils/lit/tests/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/utils/lit/tests/BUILD.bazel index 13f6f815d3995..d89626a6ee9e6 100644 --- a/utils/bazel/llvm-project-overlay/llvm/utils/lit/tests/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/llvm/utils/lit/tests/BUILD.bazel @@ -34,7 +34,14 @@ expand_template( ] + glob(["Inputs/**"]), ) for src in glob( - ["*/*.py"], - exclude = ["Inputs/**"], + ["**/*.py"], + exclude = [ + "Inputs/**", + "discovery.py", # TODO: debug and re-enable + "max-time.py", + "selecting.py", + "shtest-recursive-substitution.py", + "use-llvm-tool.py", + ], ) ]