cJSON/tests/CMakeLists.txt

52 lines
1.7 KiB
CMake
Raw Normal View History

2017-01-16 13:36:11 +00:00
add_library(unity unity/src/unity.c)
if(ENABLE_CJSON_TEST)
#copy test files
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/inputs")
file(GLOB test_files "inputs/*")
file(COPY ${test_files} DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/inputs/")
set(unity_tests
parse_examples
2017-01-17 00:53:55 +00:00
parse_number
2017-01-17 18:44:38 +00:00
parse_hex4
2017-02-04 01:12:10 +00:00
parse_string
2017-02-06 15:27:59 +00:00
parse_array
2017-02-07 19:24:59 +00:00
parse_object
2017-02-07 19:39:45 +00:00
parse_value
2017-02-19 16:25:22 +00:00
print_string
2017-02-20 00:25:19 +00:00
print_number
2017-02-20 01:12:13 +00:00
print_array
)
add_library(test-common common.c)
2017-01-18 15:18:35 +00:00
option(ENABLE_VALGRIND OFF "Enable the valgrind memory checker for the tests.")
if (ENABLE_VALGRIND)
find_program(MEMORYCHECK_COMMAND valgrind)
if ("${MEMORYCHECK_COMMAND}" MATCHES "MEMORYCHECK_COMMAND-NOTFOUND")
message(WARNING "Valgrind couldn't be found.")
unset(MEMORYCHECK_COMMAND)
else()
set(MEMORYCHECK_COMMAND_OPTIONS --trace-children=yes --leak-check=full --error-exitcode=1)
endif()
endif()
#"check" target that automatically builds everything and runs the tests
add_custom_target(check
COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure
DEPENDS ${unity_tests})
foreach(unity_test ${unity_tests})
add_executable("${unity_test}" "${unity_test}.c")
target_link_libraries("${unity_test}" "${CJSON_LIB}" unity test-common)
2017-01-18 15:18:35 +00:00
if(MEMORYCHECK_COMMAND)
add_test(NAME "${unity_test}"
COMMAND "${MEMORYCHECK_COMMAND}" ${MEMORYCHECK_COMMAND_OPTIONS} "./${unity_test}")
else()
add_test(NAME "${unity_test}"
COMMAND "./${unity_test}")
endif()
endforeach()
endif()