27 lines
1.2 KiB
CMake
27 lines
1.2 KiB
CMake
#
|
|
# This directory contains files aimed to verify that constructs that
|
|
# are supposed to fail at compile time, indeed do so.
|
|
# To prevent bit rot, the same source file is compiled twice with
|
|
# the macro COMPILATION_TEST_USE_FAILING_CODE set to 0 or 1.
|
|
#
|
|
|
|
# adds a compilation test. Two targets are created, one expected to
|
|
# succeed compilation and one that is expected to fail.
|
|
function(add_dual_compile_test TEST_NAME)
|
|
add_cpp_test(${TEST_NAME}_should_compile SOURCES ${TEST_NAME}.cpp COMPILE_ONLY LABELS no_mingw)
|
|
add_cpp_test(${TEST_NAME}_should_not_compile SOURCES ${TEST_NAME}.cpp COMPILE_ONLY WILL_FAIL LABELS acceptance no_mingw)
|
|
target_compile_definitions(${TEST_NAME}_should_not_compile PRIVATE COMPILATION_TEST_USE_FAILING_CODE=1)
|
|
endfunction(add_dual_compile_test)
|
|
|
|
|
|
add_dual_compile_test(example_compiletest)
|
|
# These don't compile with exceptions off
|
|
if (SIMDJSON_EXCEPTIONS)
|
|
add_dual_compile_test(dangling_parser_load)
|
|
add_dual_compile_test(dangling_parser_parse_uint8)
|
|
add_dual_compile_test(dangling_parser_parse_uchar)
|
|
add_dual_compile_test(dangling_parser_parse_stdstring)
|
|
add_dual_compile_test(dangling_parser_parse_padstring)
|
|
add_dual_compile_test(unsafe_parse_many)
|
|
endif()
|