2014-02-14 22:06:10 +08:00
|
|
|
set(ASAN_LIT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
|
|
|
|
set(ASAN_TESTSUITES)
|
2014-12-18 07:14:01 +08:00
|
|
|
set(ASAN_DYNAMIC_TESTSUITES)
|
2014-02-14 22:06:10 +08:00
|
|
|
|
2017-05-13 00:30:56 +08:00
|
|
|
# Before Windows 8 (CMAKE_SYSTEM_VERSION 6.2), reserving large regions of shadow
|
|
|
|
# memory allocated physical memory for page tables, which made it very
|
|
|
|
# unreliable. Remove the asan tests from check-all in this configuration.
|
|
|
|
set(SHADOW_MAPPING_UNRELIABLE FALSE)
|
|
|
|
if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8 AND
|
2018-01-04 05:29:49 +08:00
|
|
|
CMAKE_SYSTEM_VERSION LESS 6.2)
|
2017-05-13 00:30:56 +08:00
|
|
|
set(SHADOW_MAPPING_UNRELIABLE TRUE)
|
|
|
|
message(WARNING "Disabling ASan tests because they are unreliable on Windows 7 and earlier")
|
|
|
|
endif()
|
|
|
|
|
2014-09-29 21:18:55 +08:00
|
|
|
macro(get_bits_for_arch arch bits)
|
2019-07-12 16:30:17 +08:00
|
|
|
if (${arch} MATCHES "x86_64|powerpc64|powerpc64le|aarch64|arm64|mips64|mips64el|s390x|sparcv9")
|
2015-03-05 08:33:11 +08:00
|
|
|
set(${bits} 64)
|
2019-07-12 16:30:17 +08:00
|
|
|
elseif (${arch} MATCHES "i386|arm|mips|mipsel|sparc")
|
2018-02-16 06:14:36 +08:00
|
|
|
set(${bits} 32)
|
2014-09-29 21:18:55 +08:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unknown target architecture: ${arch}")
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2014-02-14 22:06:10 +08:00
|
|
|
|
2015-08-11 23:51:40 +08:00
|
|
|
set(ASAN_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
|
|
|
|
if(NOT COMPILER_RT_STANDALONE_BUILD)
|
|
|
|
list(APPEND ASAN_TEST_DEPS asan)
|
2019-10-29 01:21:01 +08:00
|
|
|
if(NOT APPLE AND COMPILER_RT_HAS_LLD AND TARGET lld)
|
2017-09-16 11:26:03 +08:00
|
|
|
list(APPEND ASAN_TEST_DEPS lld)
|
2015-08-11 23:51:40 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
set(ASAN_DYNAMIC_TEST_DEPS ${ASAN_TEST_DEPS})
|
|
|
|
|
2015-08-21 01:32:06 +08:00
|
|
|
set(ASAN_TEST_ARCH ${ASAN_SUPPORTED_ARCH})
|
|
|
|
if(APPLE)
|
|
|
|
darwin_filter_host_archs(ASAN_SUPPORTED_ARCH ASAN_TEST_ARCH)
|
|
|
|
endif()
|
2019-07-12 16:30:17 +08:00
|
|
|
list(REMOVE_ITEM ASAN_TEST_ARCH sparc sparcv9)
|
[Sanitizers, test] Fix sanitizer tests on Solaris (PR 33274)
Summary:
This patch (on top of the previous two (https://reviews.llvm.org/D40898 and
https://reviews.llvm.org/D40899) complete the compiler-rt side of the the Solaris
sanitizer port.
It contains the following sets of changes:
* For the time being, the port is for 32-bit x86 only, so reject the various tests on
x86_64.
* When compiling as C++, <setjmp.h> resp. <iso/setjmp_iso.h> only declares
_setjmp and _longjmp inside namespace std.
* MAP_FILE is a Windows feature. While e.g. Linux <sys/mman.h> provides a
no-op compat define, Solaris does not.
* test/asan/TestCases/Posix/coverage.cc was initially failing like this:
/vol/gcc/src/llvm/llvm/local/projects/compiler-rt/lib/sanitizer_common/scripts/sancov.py: 4 files merged; 2 PCs total
rm: cannot remove '/var/gcc/llvm/local/projects/compiler-rt/test/asan/I386SunOSConfig/TestCases/Posix/Output/coverage': Invalid argument
Further digging revealed that the rm was trying to remove the running test's working
directory which failed as observed. cd'ing out of the dir before let the test pass.
* Two tests needed a declaration of alloca. I've now copied the existing code from
test/asan/TestCases/alloca_constant_size.cc, but it may be more profitable and
maintainable to have a common testsuite header where such code is collected.
* Similarly, Solaris' printf %p format doesn't include the leading 0x.
* In test/asan/TestCases/malloc-no-intercept.c, I had to undef __EXTENSIONS__
(predefined by clang for no apparent reason) to avoid conflicting declarations
for memalign.
* test/ubsan/TestCases/Float/cast-overflow.cpp has different platform dependent
ways to define BYTE_ORDER and friends. Why not just use __BYTE_ORDER__ and
friends as predefined by clang and gcc?
Patch by Rainer Orth.
Reviewers: kcc, alekseyshl
Reviewed By: alekseyshl
Subscribers: srhines, kubamracek, mgorny, krytarowski, fedor.sergeev, JDevlieghere, llvm-commits, #sanitizers
Tags: #sanitizers
Differential Revision: https://reviews.llvm.org/D40900
llvm-svn: 322635
2018-01-17 20:26:04 +08:00
|
|
|
if(OS_NAME MATCHES "SunOS")
|
|
|
|
list(REMOVE_ITEM ASAN_TEST_ARCH x86_64)
|
|
|
|
endif()
|
2015-08-21 01:32:06 +08:00
|
|
|
|
|
|
|
foreach(arch ${ASAN_TEST_ARCH})
|
[sanitizer] Remove "-android" from test_arch.
Summary:
ASan and Scudo tests are adding "-android" to test arch.
There are no tests that depend on it as far as I can see.
If necessary, do this instead:
REQUIRES: aarch64-target-arch && android
Reviewers: pcc, vitalybuka
Subscribers: srhines, kubamracek, mgorny, javed.absar, kristof.beyls, cryptoad, #sanitizers, llvm-commits
Tags: #sanitizers, #llvm
Differential Revision: https://reviews.llvm.org/D58532
llvm-svn: 354829
2019-02-26 06:32:30 +08:00
|
|
|
set(ASAN_TEST_TARGET_ARCH ${arch})
|
2018-06-20 21:33:42 +08:00
|
|
|
set(ASAN_TEST_APPLE_PLATFORM "osx")
|
2015-01-29 10:28:53 +08:00
|
|
|
string(TOLOWER "-${arch}-${OS_NAME}" ASAN_TEST_CONFIG_SUFFIX)
|
|
|
|
get_bits_for_arch(${arch} ASAN_TEST_BITS)
|
2016-11-30 03:25:53 +08:00
|
|
|
get_test_cc_for_arch(${arch} ASAN_TEST_TARGET_CC ASAN_TEST_TARGET_CFLAGS)
|
2018-10-12 10:36:19 +08:00
|
|
|
if(ANDROID OR APPLE)
|
2015-01-29 10:28:53 +08:00
|
|
|
set(ASAN_TEST_DYNAMIC True)
|
|
|
|
else()
|
2014-09-29 21:18:55 +08:00
|
|
|
set(ASAN_TEST_DYNAMIC False)
|
|
|
|
endif()
|
2015-01-29 10:28:53 +08:00
|
|
|
string(TOUPPER ${arch} ARCH_UPPER_CASE)
|
|
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}${OS_NAME}Config)
|
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py
|
2015-01-29 10:28:53 +08:00
|
|
|
)
|
|
|
|
list(APPEND ASAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
2014-09-29 21:18:55 +08:00
|
|
|
|
2015-01-29 10:28:53 +08:00
|
|
|
if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
|
|
|
|
string(TOLOWER "-${arch}-${OS_NAME}-dynamic" ASAN_TEST_CONFIG_SUFFIX)
|
|
|
|
set(ASAN_TEST_DYNAMIC True)
|
|
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}${OS_NAME}DynamicConfig)
|
2014-09-29 21:18:55 +08:00
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py)
|
2015-01-29 10:28:53 +08:00
|
|
|
list(APPEND ASAN_DYNAMIC_TESTSUITES
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME})
|
2014-09-29 21:18:55 +08:00
|
|
|
endif()
|
2015-01-29 10:28:53 +08:00
|
|
|
endforeach()
|
2014-02-14 22:06:10 +08:00
|
|
|
|
2017-04-27 02:59:22 +08:00
|
|
|
# iOS and iOS simulator test suites
|
2017-07-13 05:02:48 +08:00
|
|
|
# These are not added into "check-all", in order to run these tests, use
|
|
|
|
# "check-asan-iossim-x86_64" and similar. They also require that an extra env
|
2017-04-27 02:59:22 +08:00
|
|
|
# variable to select which iOS device or simulator to use, e.g.:
|
2017-07-13 05:02:48 +08:00
|
|
|
# SANITIZER_IOSSIM_TEST_DEVICE_IDENTIFIER="iPhone 6"
|
2017-04-27 02:59:22 +08:00
|
|
|
if(APPLE)
|
|
|
|
set(ASAN_TEST_TARGET_CC ${COMPILER_RT_TEST_COMPILER})
|
|
|
|
set(ASAN_TEST_DYNAMIC True)
|
2020-01-23 06:11:17 +08:00
|
|
|
set(ASAN_APPLE_PLATFORMS ${SANITIZER_COMMON_SUPPORTED_OS})
|
2017-04-27 02:59:22 +08:00
|
|
|
|
2020-01-23 06:11:17 +08:00
|
|
|
foreach(platform ${ASAN_APPLE_PLATFORMS})
|
|
|
|
if ("${platform}" STREQUAL "osx")
|
|
|
|
# Skip macOS because it's handled by the code above that builds tests for the host machine.
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
list_intersect(
|
|
|
|
ASAN_TEST_${platform}_ARCHS
|
|
|
|
ASAN_SUPPORTED_ARCH
|
|
|
|
DARWIN_${platform}_ARCHS
|
|
|
|
)
|
|
|
|
foreach(arch ${ASAN_TEST_${platform}_ARCHS})
|
|
|
|
get_test_cflags_for_apple_platform(
|
|
|
|
"${platform}"
|
|
|
|
"${arch}"
|
|
|
|
ASAN_TEST_TARGET_CFLAGS
|
|
|
|
)
|
|
|
|
string(TOUPPER "${arch}" ARCH_UPPER_CASE)
|
|
|
|
get_capitalized_apple_platform("${platform}" PLATFORM_CAPITALIZED)
|
|
|
|
set(CONFIG_NAME "${PLATFORM_CAPITALIZED}${ARCH_UPPER_CASE}Config")
|
|
|
|
set(ASAN_TEST_CONFIG_SUFFIX "-${arch}-${platform}")
|
|
|
|
set(ASAN_TEST_APPLE_PLATFORM "${platform}")
|
|
|
|
set(ASAN_TEST_TARGET_ARCH "${arch}")
|
|
|
|
get_bits_for_arch(${arch} ASAN_TEST_BITS)
|
|
|
|
configure_lit_site_cfg(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py
|
|
|
|
)
|
|
|
|
add_lit_testsuite(check-asan-${platform}-${arch} "AddressSanitizer ${platform} ${arch} tests"
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/
|
2020-02-07 07:26:10 +08:00
|
|
|
EXCLUDE_FROM_CHECK_ALL
|
2020-01-23 06:11:17 +08:00
|
|
|
DEPENDS ${ASAN_TEST_DEPS})
|
|
|
|
endforeach()
|
2017-04-27 02:59:22 +08:00
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
2014-12-18 07:14:01 +08:00
|
|
|
# Add unit tests.
|
|
|
|
if(COMPILER_RT_INCLUDE_TESTS)
|
|
|
|
set(ASAN_TEST_DYNAMIC False)
|
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg.py)
|
2014-12-18 07:14:01 +08:00
|
|
|
if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
|
|
|
|
set(ASAN_TEST_DYNAMIC True)
|
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/dynamic/lit.site.cfg.py)
|
2014-12-18 07:14:01 +08:00
|
|
|
endif()
|
|
|
|
# FIXME: support unit test in the android test runner
|
|
|
|
if (NOT ANDROID)
|
|
|
|
list(APPEND ASAN_TEST_DEPS AsanUnitTests)
|
|
|
|
list(APPEND ASAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
|
|
|
|
if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
|
|
|
|
list(APPEND ASAN_DYNAMIC_TEST_DEPS AsanDynamicUnitTests)
|
|
|
|
list(APPEND ASAN_DYNAMIC_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit/dynamic)
|
|
|
|
endif()
|
|
|
|
endif()
|
2014-02-14 22:06:10 +08:00
|
|
|
endif()
|
2014-12-18 07:14:01 +08:00
|
|
|
|
2020-02-07 07:26:10 +08:00
|
|
|
if (SHADOW_MAPPING_UNRELIABLE)
|
|
|
|
set(exclude_from_check_all.g "EXCLUDE_FROM_CHECK_ALL")
|
|
|
|
else()
|
|
|
|
set(exclude_from_check_all.g "")
|
|
|
|
endif()
|
|
|
|
|
2014-02-14 22:06:10 +08:00
|
|
|
add_lit_testsuite(check-asan "Running the AddressSanitizer tests"
|
|
|
|
${ASAN_TESTSUITES}
|
2020-02-07 07:26:10 +08:00
|
|
|
${exclude_from_check_all}
|
2016-09-14 06:25:41 +08:00
|
|
|
DEPENDS ${ASAN_TEST_DEPS})
|
2016-07-12 05:51:56 +08:00
|
|
|
set_target_properties(check-asan PROPERTIES FOLDER "Compiler-RT Misc")
|
2014-12-18 07:14:01 +08:00
|
|
|
|
|
|
|
if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
|
|
|
|
add_lit_testsuite(check-asan-dynamic
|
|
|
|
"Running the AddressSanitizer tests with dynamic runtime"
|
|
|
|
${ASAN_DYNAMIC_TESTSUITES}
|
2020-02-07 07:26:10 +08:00
|
|
|
${exclude_from_check_all.g}
|
2014-12-18 07:14:01 +08:00
|
|
|
DEPENDS ${ASAN_DYNAMIC_TEST_DEPS})
|
|
|
|
set_target_properties(check-asan-dynamic
|
2016-07-12 05:51:56 +08:00
|
|
|
PROPERTIES FOLDER "Compiler-RT Misc")
|
2014-12-18 07:14:01 +08:00
|
|
|
endif()
|