
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.
43 lines
1.7 KiB
CMake
43 lines
1.7 KiB
CMake
set(GWP_ASAN_LIT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
set(GWP_ASAN_LIT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(GWP_ASAN_TESTSUITES)
|
|
|
|
set(GWP_ASAN_UNITTEST_DEPS)
|
|
set(GWP_ASAN_TEST_DEPS
|
|
${SANITIZER_COMMON_LIT_TEST_DEPS}
|
|
gwp_asan
|
|
scudo_standalone)
|
|
|
|
# Longstanding issues in the Android test runner means that compiler-rt unit
|
|
# tests don't work on Android due to libc++ link-time issues. Looks like the
|
|
# exported libc++ from the Android NDK is x86-64, even though it's part of the
|
|
# ARM[64] toolchain... See similar measures for ASan and sanitizer-common that
|
|
# disable unit tests for Android.
|
|
if (COMPILER_RT_INCLUDE_TESTS AND COMPILER_RT_HAS_GWP_ASAN AND NOT ANDROID)
|
|
list(APPEND GWP_ASAN_TEST_DEPS GwpAsanUnitTests)
|
|
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 GWP_ASAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/unit)
|
|
endif()
|
|
|
|
if (COMPILER_RT_INCLUDE_TESTS AND COMPILER_RT_HAS_SCUDO_STANDALONE AND COMPILER_RT_HAS_GWP_ASAN)
|
|
foreach(arch ${GWP_ASAN_SUPPORTED_ARCH})
|
|
set(GWP_ASAN_TEST_TARGET_ARCH ${arch})
|
|
string(TOLOWER "-${arch}" GWP_ASAN_TEST_CONFIG_SUFFIX)
|
|
get_test_cc_for_arch(${arch} GWP_ASAN_TEST_TARGET_CC GWP_ASAN_TEST_TARGET_CFLAGS)
|
|
string(TOUPPER ${arch} ARCH_UPPER_CASE)
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}${OS_NAME}Config)
|
|
|
|
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 GWP_ASAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
|
endforeach()
|
|
|
|
add_lit_testsuite(check-gwp_asan "Running the GWP-ASan tests"
|
|
${GWP_ASAN_TESTSUITES}
|
|
DEPENDS ${GWP_ASAN_TEST_DEPS})
|
|
endif()
|