mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
88def6a5cb
closes #13
50 lines
2 KiB
CMake
50 lines
2 KiB
CMake
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS _GNU_SOURCE)
|
|
|
|
if(BUILD_TESTING)
|
|
function(add_portability_test bin)
|
|
add_toku_test(portability ${bin} ${ARGN})
|
|
endfunction(add_portability_test)
|
|
|
|
file(GLOB srcs RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" *.cc)
|
|
|
|
foreach(src ${srcs})
|
|
get_filename_component(test ${src} NAME_WE)
|
|
add_executable(${test} ${test})
|
|
target_link_libraries(${test} ${LIBTOKUPORTABILITY})
|
|
set_target_properties(${test} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
add_space_separated_property(TARGET ${test} COMPILE_FLAGS -fvisibility=hidden)
|
|
list(APPEND tests ${test})
|
|
endforeach(src)
|
|
|
|
include(CheckCCompilerFlag)
|
|
check_c_compiler_flag(-Wno-unused-result HAVE_WNO_UNUSED_RESULT)
|
|
if (HAVE_WNO_UNUSED_RESULT)
|
|
add_space_separated_property(SOURCE try-leak-lost COMPILE_FLAGS -Wno-unused-result)
|
|
endif ()
|
|
check_c_compiler_flag(-Wno-maybe-uninitialized HAVE_WNO_MAYBE_UNINITIALIZED)
|
|
if (HAVE_WNO_MAYBE_UNINITIALIZED)
|
|
add_space_separated_property(SOURCE try-uninit COMPILE_FLAGS -Wno-maybe-uninitialized)
|
|
add_space_separated_property(TARGET try-uninit LINK_FLAGS -Wno-maybe-uninitialized)
|
|
endif ()
|
|
|
|
configure_file(ensure_memcheck_fails.sh . COPYONLY)
|
|
foreach(test try-leak-lost try-leak-reachable try-uninit)
|
|
list(REMOVE_ITEM tests ${test})
|
|
|
|
add_test(NAME portability/${test}
|
|
COMMAND ensure_memcheck_fails.sh $<TARGET_FILE:${test}> valgrind --error-exitcode=1 --quiet --leak-check=full --show-reachable=yes --trace-children=yes --trace-children-skip=sh,*/sh,rm,*/rm,cp,*/cp,mv,*/mv,cat,*/cat,diff,test,wc,*/wc)
|
|
setup_toku_test_properties(portability/${test} ${test})
|
|
endforeach(test)
|
|
|
|
foreach(test ${tests})
|
|
add_portability_test(${test})
|
|
endforeach(test)
|
|
|
|
set(portability_tests_should_fail
|
|
portability/try-assert0
|
|
portability/try-assert-zero
|
|
)
|
|
|
|
set_tests_properties(${portability_tests_should_fail} PROPERTIES WILL_FAIL TRUE)
|
|
endif(BUILD_TESTING)
|