From 0262515355cf5d88fabed718694ab3c420fe3d56 Mon Sep 17 00:00:00 2001 From: Rahul Joshi 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 )