2014-02-14 21:02:58 +08:00
|
|
|
set(MSAN_LIT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
|
2016-02-10 00:18:15 +08:00
|
|
|
set(MSAN_TESTSUITES)
|
|
|
|
|
|
|
|
set(MSAN_TEST_ARCH ${MSAN_SUPPORTED_ARCH})
|
|
|
|
if(APPLE)
|
|
|
|
darwin_filter_host_archs(MSAN_SUPPORTED_ARCH MSAN_TEST_ARCH)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(arch ${MSAN_TEST_ARCH})
|
2016-02-23 09:34:17 +08:00
|
|
|
set(MSAN_TEST_TARGET_ARCH ${arch})
|
2016-02-10 00:18:15 +08:00
|
|
|
string(TOLOWER "-${arch}" MSAN_TEST_CONFIG_SUFFIX)
|
2016-11-30 03:25:53 +08:00
|
|
|
get_test_cc_for_arch(${arch} MSAN_TEST_TARGET_CC MSAN_TEST_TARGET_CFLAGS)
|
2016-02-10 00:18:15 +08:00
|
|
|
string(TOUPPER ${arch} ARCH_UPPER_CASE)
|
|
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}Config)
|
|
|
|
|
|
|
|
configure_lit_site_cfg(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg)
|
|
|
|
list(APPEND MSAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
|
|
|
endforeach()
|
2014-02-14 21:02:58 +08:00
|
|
|
|
2014-02-20 17:47:18 +08:00
|
|
|
set(MSAN_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
|
|
|
|
if(NOT COMPILER_RT_STANDALONE_BUILD)
|
|
|
|
list(APPEND MSAN_TEST_DEPS msan)
|
|
|
|
endif()
|
2014-02-14 21:02:58 +08:00
|
|
|
|
2014-02-19 19:18:47 +08:00
|
|
|
if(COMPILER_RT_INCLUDE_TESTS AND COMPILER_RT_HAS_LIBCXX_SOURCES)
|
2014-02-14 21:02:58 +08:00
|
|
|
configure_lit_site_cfg(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg)
|
|
|
|
list(APPEND MSAN_TEST_DEPS MsanUnitTests)
|
2016-02-18 03:35:51 +08:00
|
|
|
list(APPEND MSAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
|
2014-02-14 21:02:58 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_lit_testsuite(check-msan "Running the MemorySanitizer tests"
|
2016-02-18 03:35:51 +08:00
|
|
|
${MSAN_TESTSUITES}
|
2014-02-14 21:02:58 +08:00
|
|
|
DEPENDS ${MSAN_TEST_DEPS}
|
|
|
|
)
|
2016-07-12 05:51:56 +08:00
|
|
|
set_target_properties(check-msan PROPERTIES FOLDER "Compiler-RT Misc")
|