2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2015-06-25 09:20:03 +02:00
|
|
|
mbedtls
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2012-07-03 17:10:33 +02:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2015-11-14 14:09:01 +01:00
|
|
|
find_package(Perl)
|
|
|
|
if(NOT PERL_FOUND)
|
|
|
|
message(FATAL_ERROR "Cannot build test suites without Perl")
|
|
|
|
endif()
|
|
|
|
|
2017-12-05 13:08:15 +01:00
|
|
|
# Enable definition of various functions used throughout the testsuite
|
2018-06-25 13:10:00 +02:00
|
|
|
# (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless
|
2017-12-05 13:08:15 +01:00
|
|
|
# on non-POSIX platforms.
|
|
|
|
add_definitions("-D_POSIX_C_SOURCE=200809L")
|
|
|
|
|
2018-11-29 11:15:06 +01:00
|
|
|
# Test suites caught by SKIP_TEST_SUITES are built but not executed.
|
|
|
|
# "foo" as a skip pattern skips "test_suite_foo" and "test_suite_foo.bar"
|
|
|
|
# but not "test_suite_foobar".
|
|
|
|
string(REGEX REPLACE "[ ,;]" "|" SKIP_TEST_SUITES_REGEX "${SKIP_TEST_SUITES}")
|
|
|
|
string(REPLACE "." "\\." SKIP_TEST_SUITES_REGEX "${SKIP_TEST_SUITES_REGEX}")
|
|
|
|
set(SKIP_TEST_SUITES_REGEX "^(${SKIP_TEST_SUITES_REGEX})(\$|\\.)")
|
|
|
|
|
2011-07-13 17:03:10 +02:00
|
|
|
function(add_test_suite suite_name)
|
|
|
|
if(ARGV1)
|
2015-06-25 09:20:03 +02:00
|
|
|
set(data_name ${ARGV1})
|
2011-07-13 17:03:10 +02:00
|
|
|
else()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(data_name ${suite_name})
|
2011-07-13 16:54:54 +02:00
|
|
|
endif()
|
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
add_custom_command(
|
2011-07-13 17:03:10 +02:00
|
|
|
OUTPUT test_suite_${data_name}.c
|
2018-06-29 16:00:11 +02:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_test_code.py -f ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${suite_name}.function -d ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${data_name}.data -t ${CMAKE_CURRENT_SOURCE_DIR}/suites/main_test.function -p ${CMAKE_CURRENT_SOURCE_DIR}/suites/host_test.function -s ${CMAKE_CURRENT_SOURCE_DIR}/suites --helpers-file ${CMAKE_CURRENT_SOURCE_DIR}/suites/helpers.function -o .
|
2018-03-06 12:49:41 +01:00
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_test_code.py mbedtls ${CMAKE_CURRENT_SOURCE_DIR}/suites/helpers.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/main_test.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/host_test.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${suite_name}.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${data_name}.data
|
2010-06-19 00:54:05 +02:00
|
|
|
)
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2010-06-19 00:54:05 +02:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
2011-07-13 17:03:10 +02:00
|
|
|
add_executable(test_suite_${data_name} test_suite_${data_name}.c)
|
|
|
|
target_link_libraries(test_suite_${data_name} ${libs})
|
2018-11-29 11:15:06 +01:00
|
|
|
if(${data_name} MATCHES ${SKIP_TEST_SUITES_REGEX})
|
|
|
|
message(STATUS "The test suite ${data_name} will not be executed.")
|
|
|
|
else()
|
|
|
|
add_test(${data_name}-suite test_suite_${data_name} --verbose)
|
|
|
|
endif()
|
2009-06-28 23:50:27 +02:00
|
|
|
endfunction(add_test_suite)
|
|
|
|
|
2015-07-01 13:41:35 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function")
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-07-01 17:06:28 +02:00
|
|
|
if(MSVC)
|
2016-11-03 02:12:50 +01:00
|
|
|
# If a warning level has been defined, suppress all warnings for test code
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W0")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX-")
|
2015-07-01 17:06:28 +02:00
|
|
|
endif(MSVC)
|
|
|
|
|
2019-04-04 16:59:33 +02:00
|
|
|
add_test_suite(debug)
|
|
|
|
add_test_suite(ssl)
|
|
|
|
add_test_suite(version)
|
|
|
|
add_test_suite(x509parse)
|
|
|
|
add_test_suite(x509write)
|
2014-02-06 15:43:21 +01:00
|
|
|
|
2018-03-21 12:12:47 +01:00
|
|
|
# Make scripts and data files needed for testing available in an
|
|
|
|
# out-of-source build.
|
2014-02-06 15:43:21 +01:00
|
|
|
if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
2019-05-06 11:06:06 +02:00
|
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/seedfile")
|
|
|
|
link_to_source(seedfile)
|
|
|
|
endif()
|
2018-03-21 12:12:47 +01:00
|
|
|
link_to_source(compat.sh)
|
|
|
|
link_to_source(data_files)
|
|
|
|
link_to_source(scripts)
|
|
|
|
link_to_source(ssl-opt.sh)
|
2014-02-06 15:43:21 +01:00
|
|
|
endif()
|