2016-07-27 15:29:49 +00:00
|
|
|
set(INTERCEPTION_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
|
|
|
|
set(INTERCEPTION_TESTSUITES)
|
|
|
|
|
2016-08-04 04:46:39 +00:00
|
|
|
# Unit tests. There are currently no unit tests capable to running on Apple or
|
|
|
|
# Android targets.
|
2024-07-18 18:33:24 -07:00
|
|
|
if(NOT ANDROID AND NOT APPLE)
|
2016-07-27 15:29:49 +00:00
|
|
|
configure_lit_site_cfg(
|
2019-06-27 20:56:04 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg.py)
|
2016-07-27 15:29:49 +00:00
|
|
|
list(APPEND INTERCEPTION_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
|
|
|
|
list(APPEND INTERCEPTION_TEST_DEPS InterceptionUnitTests)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_lit_testsuite(check-interception "Running the Interception tests"
|
|
|
|
${INTERCEPTION_TESTSUITES}
|
|
|
|
DEPENDS ${INTERCEPTION_TEST_DEPS})
|