Skip to content

Commit f735250

Browse files
authored
[profcheck] Exclude LoopVectorize, temporarily (#161243)
LV is under active development, new tests are added. Bulk-excluding it from `profcheck`​, for the moment. Issue #161235 (see also its parent)
1 parent 0457644 commit f735250

File tree

2 files changed

+10
-455
lines changed

2 files changed

+10
-455
lines changed

llvm/test/lit.cfg.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,17 @@
4848
# directories.
4949
config.excludes = ["Inputs", "CMakeLists.txt", "README.txt", "LICENSE.txt"]
5050

51-
# Exclude llvm-reduce tests for profcheck because we substitute the FileCheck
52-
# binary with a no-op command for profcheck, but llvm-reduce tests have RUN
53-
# commands of the form llvm-reduce --test FileCheck, which explode if we
54-
# substitute FileCheck because llvm-reduce expects FileCheck in these tests.
55-
# It's not really possible to exclude these tests from the command substitution,
56-
# so we just exclude llvm-reduce tests from this config altogether. This should
57-
# be fine though as profcheck config tests are mostly concerned with opt.
5851
if config.enable_profcheck:
59-
config.excludes = config.excludes + ["llvm-reduce"]
52+
# Exclude llvm-reduce tests for profcheck because we substitute the FileCheck
53+
# binary with a no-op command for profcheck, but llvm-reduce tests have RUN
54+
# commands of the form llvm-reduce --test FileCheck, which explode if we
55+
# substitute FileCheck because llvm-reduce expects FileCheck in these tests.
56+
# It's not really possible to exclude these tests from the command substitution,
57+
# so we just exclude llvm-reduce tests from this config altogether. This should
58+
# be fine though as profcheck config tests are mostly concerned with opt.
59+
config.excludes.append("llvm-reduce")
60+
# (Issue #161235) Temporarily exclude LoopVectorize.
61+
config.excludes.append("LoopVectorize")
6062

6163
# test_source_root: The root path where tests are located.
6264
config.test_source_root = os.path.dirname(__file__)

0 commit comments

Comments
 (0)