2015-02-21 04:31:18 +08:00
|
|
|
configure_lit_site_cfg(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CFI_TEST_DEPS)
|
|
|
|
if(NOT COMPILER_RT_STANDALONE_BUILD)
|
|
|
|
list(APPEND CFI_TEST_DEPS
|
|
|
|
FileCheck
|
|
|
|
clang
|
|
|
|
not
|
2015-06-19 09:52:55 +08:00
|
|
|
ubsan
|
2015-02-21 04:31:18 +08:00
|
|
|
)
|
|
|
|
if(LLVM_ENABLE_PIC AND LLVM_BINUTILS_INCDIR)
|
|
|
|
list(APPEND CFI_TEST_DEPS
|
|
|
|
LLVMgold
|
|
|
|
)
|
|
|
|
endif()
|
2015-03-17 06:00:04 +08:00
|
|
|
if(APPLE)
|
|
|
|
list(APPEND CFI_TEST_DEPS
|
|
|
|
LTO
|
|
|
|
)
|
|
|
|
endif()
|
2015-07-09 06:10:34 +08:00
|
|
|
if(WIN32 AND EXISTS ${CMAKE_SOURCE_DIR}/tools/lld)
|
|
|
|
list(APPEND CFI_TEST_DEPS
|
|
|
|
lld
|
|
|
|
)
|
|
|
|
endif()
|
2015-02-21 04:31:18 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_lit_testsuite(check-cfi "Running the cfi regression tests"
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
DEPENDS ${CFI_TEST_DEPS})
|
2015-02-26 04:14:05 +08:00
|
|
|
|
|
|
|
add_lit_target(check-cfi-and-supported "Running the cfi regression tests"
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
PARAMS check_supported=1
|
|
|
|
DEPENDS ${CFI_TEST_DEPS})
|
|
|
|
|
2015-02-21 04:31:18 +08:00
|
|
|
set_target_properties(check-cfi PROPERTIES FOLDER "Tests")
|