Fix check-clang-tools target after 7cc8377f2c

This change was intended to add the tests check-clang and check-clang-pseudo,
but afterwards it was *only* running those tests.
(This was because unlike add_lit_testsuite, add_lit_testsuite*s* does not
get included in umbrella suites).
This commit is contained in:
Sam McCall 2022-05-06 23:06:19 +02:00
parent 203455c85a
commit 1eb97481ef
1 changed files with 6 additions and 0 deletions

View File

@ -96,6 +96,12 @@ if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
endif()
endif()
add_lit_testsuite(check-clang-extra "Running clang-tools-extra/test"
${CMAKE_CURRENT_BINARY_DIR}
DEPENDS ${CLANG_TOOLS_TEST_DEPS}
)
set_target_properties(check-clang-extra PROPERTIES FOLDER "Clang extra tools' tests")
add_lit_testsuites(CLANG-EXTRA ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS ${CLANG_TOOLS_TEST_DEPS}
)