forked from OSchip/llvm-project
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:
parent
203455c85a
commit
1eb97481ef
|
@ -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}
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue