brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.9 KiB · 1603d47 Raw
89 lines · plain
1include(CheckCXXCompilerFlag)2include(CompilerRTCompile)3include(CompilerRTLink)4 5set(MEMPROF_UNITTEST_CFLAGS6  ${COMPILER_RT_UNITTEST_CFLAGS}7  ${COMPILER_RT_GTEST_CFLAGS}8  ${COMPILER_RT_GMOCK_CFLAGS}9  ${SANITIZER_TEST_CXX_CFLAGS}10  -I${COMPILER_RT_SOURCE_DIR}/lib/11  -DSANITIZER_COMMON_NO_REDEFINE_BUILTINS12  -O213  -g14  -fno-rtti15  -Wno-pedantic16  -fno-omit-frame-pointer)17 18# Suppress warnings for gmock variadic macros for clang and gcc respectively.19append_list_if(SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG -Wno-gnu-zero-variadic-macro-arguments MEMPROF_UNITTEST_CFLAGS)20append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros MEMPROF_UNITTEST_CFLAGS)21 22file(GLOB MEMPROF_HEADERS ../*.h)23 24set(MEMPROF_SOURCES25  ../memprof_mibmap.cpp26  ../memprof_rawprofile.cpp)27 28set(MEMPROF_UNITTESTS29  histogram_encoding.cpp30  rawprofile.cpp31  driver.cpp)32 33include_directories(../../../include)34 35set(MEMPROF_UNIT_TEST_HEADERS36  ${MEMPROF_HEADERS})37 38set(MEMPROF_UNITTEST_LINK_FLAGS39  ${COMPILER_RT_UNITTEST_LINK_FLAGS})40 41if(NOT WIN32)42  list(APPEND MEMPROF_UNITTEST_LINK_FLAGS -pthread)43endif()44 45set(MEMPROF_UNITTEST_DEPS)46if (TARGET cxx-headers OR HAVE_LIBCXX)47  list(APPEND MEMPROF_UNITTEST_DEPS cxx-headers)48endif()49 50set(MEMPROF_UNITTEST_LINK_LIBRARIES51  ${COMPILER_RT_UNWINDER_LINK_LIBS}52  ${SANITIZER_TEST_CXX_LIBRARIES})53append_list_if(COMPILER_RT_HAS_LIBDL -ldl MEMPROF_UNITTEST_LINK_LIBRARIES)54 55# Adds memprof tests for each architecture.56macro(add_memprof_tests_for_arch arch)57  set(MEMPROF_TEST_RUNTIME_OBJECTS58    $<TARGET_OBJECTS:RTSanitizerCommon.${arch}>59    $<TARGET_OBJECTS:RTSanitizerCommonCoverage.${arch}>60    $<TARGET_OBJECTS:RTSanitizerCommonLibc.${arch}>61    $<TARGET_OBJECTS:RTSanitizerCommonSymbolizer.${arch}>62    $<TARGET_OBJECTS:RTSanitizerCommonSymbolizerInternal.${arch}>63  )64  set(MEMPROF_TEST_RUNTIME RTMemProfTest.${arch})65  add_library(${MEMPROF_TEST_RUNTIME} STATIC ${MEMPROF_TEST_RUNTIME_OBJECTS})66  set_target_properties(${MEMPROF_TEST_RUNTIME} PROPERTIES67    ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}68    FOLDER "Compiler-RT/Tests/Runtime")69  set(MEMPROF_TEST_OBJECTS)70  generate_compiler_rt_tests(MEMPROF_TEST_OBJECTS71    MemProfUnitTests "MemProf-${arch}-UnitTest" ${arch}72    RUNTIME ${MEMPROF_TEST_RUNTIME}73    DEPS ${MEMPROF_UNITTEST_DEPS}74    SOURCES ${MEMPROF_UNITTESTS} ${MEMPROF_SOURCES} ${COMPILER_RT_GTEST_SOURCE}75    COMPILE_DEPS ${MEMPROF_UNIT_TEST_HEADERS}76    CFLAGS ${MEMPROF_UNITTEST_CFLAGS}77    LINK_FLAGS ${MEMPROF_UNITTEST_LINK_FLAGS} ${MEMPROF_UNITTEST_LINK_LIBRARIES})78endmacro()79 80# MemProf unit tests testsuite.81add_custom_target(MemProfUnitTests)82set_target_properties(MemProfUnitTests PROPERTIES FOLDER "Compiler-RT/Tests")83if(COMPILER_RT_CAN_EXECUTE_TESTS AND COMPILER_RT_DEFAULT_TARGET_ARCH IN_LIST MEMPROF_SUPPORTED_ARCH)84  # MemProf unit tests are only run on the host machine.85  foreach(arch ${COMPILER_RT_DEFAULT_TARGET_ARCH})86    add_memprof_tests_for_arch(${arch})87  endforeach()88endif()89