mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 16:06:40 +00:00

Update the folder titles for targets in the monorepository that have not seen taken care of for some time. These are the folders that targets are organized in Visual Studio and XCode (`set_property(TARGET <target> PROPERTY FOLDER "<title>")`) when using the respective CMake's IDE generator. * Ensure that every target is in a folder * Use a folder hierarchy with each LLVM subproject as a top-level folder * Use consistent folder names between subprojects * When using target-creating functions from AddLLVM.cmake, automatically deduce the folder. This reduces the number of `set_property`/`set_target_property`, but are still necessary when `add_custom_target`, `add_executable`, `add_library`, etc. are used. A LLVM_SUBPROJECT_TITLE definition is used for that in each subproject's root CMakeLists.txt.
58 lines
1.6 KiB
CMake
58 lines
1.6 KiB
CMake
set(MSAN_LIT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(MSAN_TESTSUITES)
|
|
set(MSAN_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS} msan)
|
|
|
|
set(MSAN_TEST_ARCH ${MSAN_SUPPORTED_ARCH})
|
|
if(APPLE)
|
|
darwin_filter_host_archs(MSAN_SUPPORTED_ARCH MSAN_TEST_ARCH)
|
|
endif()
|
|
|
|
macro(add_msan_testsuite arch lld thinlto)
|
|
set(MSAN_TEST_TARGET_ARCH ${arch})
|
|
get_test_cc_for_arch(${arch} MSAN_TEST_TARGET_CC MSAN_TEST_TARGET_CFLAGS)
|
|
|
|
string(TOUPPER ${arch} CONFIG_NAME)
|
|
|
|
if (${thinlto})
|
|
set(CONFIG_NAME "thinlto-${CONFIG_NAME}")
|
|
list(APPEND MSAN_TEST_DEPS LTO)
|
|
endif()
|
|
if (${lld})
|
|
set(CONFIG_NAME "lld-${CONFIG_NAME}")
|
|
if (TARGET lld)
|
|
list(APPEND MSAN_TEST_DEPS lld)
|
|
endif()
|
|
endif()
|
|
set(MSAN_TEST_USE_THINLTO ${thinlto})
|
|
set(MSAN_TEST_USE_LLD ${lld})
|
|
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py)
|
|
list(APPEND MSAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
|
endmacro()
|
|
|
|
foreach(arch ${MSAN_TEST_ARCH})
|
|
add_msan_testsuite(${arch} False False)
|
|
|
|
if(COMPILER_RT_HAS_LLD AND arch STREQUAL "x86_64" AND NOT (APPLE OR WIN32))
|
|
add_msan_testsuite(${arch} True False)
|
|
endif()
|
|
endforeach()
|
|
|
|
if(COMPILER_RT_INCLUDE_TESTS AND
|
|
COMPILER_RT_LIBCXX_PATH AND
|
|
COMPILER_RT_LIBCXXABI_PATH)
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg.py)
|
|
list(APPEND MSAN_TEST_DEPS MsanUnitTests)
|
|
list(APPEND MSAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
|
|
endif()
|
|
|
|
add_lit_testsuite(check-msan "Running the MemorySanitizer tests"
|
|
${MSAN_TESTSUITES}
|
|
DEPENDS ${MSAN_TEST_DEPS}
|
|
)
|