[llvm] [LLVM] Exclude specialized lit test suites from check-all (PR #159781)

Rahul Joshi via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 19 07:10:44 PDT 2025


https://github.com/jurahul created https://github.com/llvm/llvm-project/pull/159781

None

>From 0262515355cf5d88fabed718694ab3c420fe3d56 Mon Sep 17 00:00:00 2001
From: Rahul Joshi <rjoshi at nvidia.com>
Date: Fri, 19 Sep 2025 07:09:31 -0700
Subject: [PATCH] [LLVM] Exclude specialized lit test suites from check-all

---
 llvm/test/FileCheck/CMakeLists.txt | 1 +
 llvm/test/TableGen/CMakeLists.txt  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/llvm/test/FileCheck/CMakeLists.txt b/llvm/test/FileCheck/CMakeLists.txt
index a5bd0daac9b7a..8ff5abf3dd23f 100644
--- a/llvm/test/FileCheck/CMakeLists.txt
+++ b/llvm/test/FileCheck/CMakeLists.txt
@@ -1,4 +1,5 @@
 add_lit_testsuite(check-llvm-filecheck "Running lit suite for FileCheck"
   ${CMAKE_CURRENT_BINARY_DIR}
+  EXCLUDE_FROM_CHECK_ALL
   DEPENDS ${LLVM_TEST_DEPENDS_COMMON}
   )
diff --git a/llvm/test/TableGen/CMakeLists.txt b/llvm/test/TableGen/CMakeLists.txt
index 65774bb4b45b5..99799c726d420 100644
--- a/llvm/test/TableGen/CMakeLists.txt
+++ b/llvm/test/TableGen/CMakeLists.txt
@@ -1,5 +1,6 @@
 add_lit_testsuite(check-llvm-tablegen "Running lit suite for TableGen"
   ${CMAKE_CURRENT_BINARY_DIR}
+  EXCLUDE_FROM_CHECK_ALL
   DEPENDS ${LLVM_TEST_DEPENDS_COMMON}
   DEPENDS llvm-tblgen
   )



More information about the llvm-commits mailing list