forked from OSchip/llvm-project
37 lines
1.1 KiB
CMake
37 lines
1.1 KiB
CMake
set(CLANGD_TEST_DEPS
|
|
clangd
|
|
ClangdTests
|
|
clangd-indexer
|
|
# No tests for it, but we should still make sure they build.
|
|
dexp
|
|
)
|
|
|
|
if(CLANGD_BUILD_XPC)
|
|
list(APPEND CLANGD_TEST_DEPS clangd-xpc-test-client)
|
|
list(APPEND CLANGD_TEST_DEPS ClangdXpcUnitTests)
|
|
endif()
|
|
|
|
if(CLANGD_ENABLE_REMOTE)
|
|
list(APPEND CLANGD_TEST_DEPS clangd-index-server clangd-index-server-monitor)
|
|
endif()
|
|
|
|
foreach(dep FileCheck count not llvm-config)
|
|
if(TARGET ${dep})
|
|
list(APPEND CLANGD_TEST_DEPS ${dep})
|
|
endif()
|
|
endforeach()
|
|
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg.py
|
|
MAIN_CONFIG
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.cfg.py
|
|
)
|
|
|
|
add_lit_testsuite(check-clangd "Running the Clangd regression tests"
|
|
# clangd doesn't put unittest configs in test/unit like every other project.
|
|
# Because of that, this needs to pass two folders here, while every other
|
|
# project only needs to pass CMAKE_CURRENT_BINARY_DIR.
|
|
${CMAKE_CURRENT_BINARY_DIR}/../unittests;${CMAKE_CURRENT_BINARY_DIR}
|
|
DEPENDS ${CLANGD_TEST_DEPS})
|