aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/lit.cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/lit.cfg.py')
-rw-r--r--llvm/test/lit.cfg.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py
index dd3f947..781240a 100644
--- a/llvm/test/lit.cfg.py
+++ b/llvm/test/lit.cfg.py
@@ -48,15 +48,17 @@ config.suffixes = [".ll", ".c", ".test", ".txt", ".s", ".mir", ".yaml", ".spv"]
# directories.
config.excludes = ["Inputs", "CMakeLists.txt", "README.txt", "LICENSE.txt"]
-# Exclude llvm-reduce tests for profcheck because we substitute the FileCheck
-# binary with a no-op command for profcheck, but llvm-reduce tests have RUN
-# commands of the form llvm-reduce --test FileCheck, which explode if we
-# substitute FileCheck because llvm-reduce expects FileCheck in these tests.
-# It's not really possible to exclude these tests from the command substitution,
-# so we just exclude llvm-reduce tests from this config altogether. This should
-# be fine though as profcheck config tests are mostly concerned with opt.
if config.enable_profcheck:
- config.excludes = config.excludes + ["llvm-reduce"]
+ # Exclude llvm-reduce tests for profcheck because we substitute the FileCheck
+ # binary with a no-op command for profcheck, but llvm-reduce tests have RUN
+ # commands of the form llvm-reduce --test FileCheck, which explode if we
+ # substitute FileCheck because llvm-reduce expects FileCheck in these tests.
+ # It's not really possible to exclude these tests from the command substitution,
+ # so we just exclude llvm-reduce tests from this config altogether. This should
+ # be fine though as profcheck config tests are mostly concerned with opt.
+ config.excludes.append("llvm-reduce")
+ # (Issue #161235) Temporarily exclude LoopVectorize.
+ config.excludes.append("LoopVectorize")
# test_source_root: The root path where tests are located.
config.test_source_root = os.path.dirname(__file__)