[llvm] 923a7af - [Profcheck] Enable MergeFunc tests (#215881)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 12 21:17:19 PDT 2026
Author: Alok Kumar Sharma
Date: 2026-08-13T09:47:13+05:30
New Revision: 923a7af4acfb4079a486bdffa72674d7257afadb
URL: https://github.com/llvm/llvm-project/commit/923a7af4acfb4079a486bdffa72674d7257afadb
DIFF: https://github.com/llvm/llvm-project/commit/923a7af4acfb4079a486bdffa72674d7257afadb.diff
LOG: [Profcheck] Enable MergeFunc tests (#215881)
Remove MergeFunc from the profcheck exclusion list.
All MergeFunc tests pass with LLVM_ENABLE_PROFCHECK enabled, so no
expected-failure entries are needed.
Added:
Modified:
llvm/test/lit.cfg.py
Removed:
################################################################################
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py
index 6f04a855d8cb8..03a57a59fa04a 100644
--- a/llvm/test/lit.cfg.py
+++ b/llvm/test/lit.cfg.py
@@ -79,7 +79,7 @@
)
# Not aimed at being used for peak-optimized binaries. These will be
# addressed later. PhaseOrdering has a couple of merge function tests.
- config.excludes.extend(["GCOVProfiling", "MergeFunc", "PhaseOrdering"])
+ config.excludes.extend(["GCOVProfiling", "PhaseOrdering"])
# test_source_root: The root path where tests are located.
config.test_source_root = os.path.dirname(__file__)
More information about the llvm-commits
mailing list