test/build/CMakeLists.txt
Raffi Enficiaud fcd24729df New documentation section about runtime configuration
- adding tests for custom command line argument passing
- using command line argument in global fixtures and raising strong errors
- using command line argument in init function and describing the errors
- using command line argument dataset test cases and describing the errors
- removing sample totally from all the examples
2019-03-19 01:43:29 +01:00

284 lines
9.2 KiB
CMake

# Copyright 2014, Raffi Enficiaud
# Use, modification, and distribution are subject to the
# Boost Software License, Version 1.0. (See accompanying file
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# See http://www.boost.org/libs/test for the library home page.
cmake_minimum_required(VERSION 2.8.11)
project(BoostTest)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set(CMAKE_MACOSX_RPATH ON)
add_definitions(-DBOOST_TEST_NO_LIB)
# build type, by default to release (with optimisations)
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to 'Release' as none was specified.")
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
if(NOT WITHOUT_TESTS)
# ctest sets BUILD_TESTING automatically, but does not seem to serve its purpose.
include(CTest)
enable_testing()
endif()
include(CheckCXXCompilerFlag)
include(CheckIncludeFileCXX)
if(NOT MSVC)
# c++11 options
check_cxx_compiler_flag(-std=c++11 HAS_CXX11_FLAG)
check_cxx_compiler_flag(-std=c++0x HAS_CXX0X_FLAG)
if(HAS_CXX11_FLAG)
message(STATUS "Compiling with C++11 support")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(HAS_CXX0X_FLAG)
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
endif()
endif()
if(MSVC)
add_definitions(-D_SCL_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS)
set(MSVC_Additional_flags "/fp:fast /GF /Oy /GT /Ox /Ob2 /Oi /Os")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${MSVC_Additional_flags}")
endif()
# global path
set(BOOST_TEST_ROOT_DIR ${BoostTest_SOURCE_DIR}/..)
set(BOOST_ROOT_DIR ${BOOST_TEST_ROOT_DIR}/../..)
get_filename_component(BOOST_TEST_ROOT_DIR_ABS ${BoostTest_SOURCE_DIR}/.. ABSOLUTE)
get_filename_component(BOOST_ROOT_DIR_ABS ${BOOST_ROOT_DIR} ABSOLUTE)
# global include on boost
include_directories(${BOOST_ROOT_DIR_ABS}/)
# include globs
file(GLOB_RECURSE
BOOST_UTF_HEADERS
${BOOST_TEST_ROOT_DIR}/include/*.hpp
${BOOST_TEST_ROOT_DIR}/include/*.ipp)
# organize files
foreach(_h IN LISTS BOOST_UTF_HEADERS)
get_filename_component(_hh ${_h} ABSOLUTE)
file(RELATIVE_PATH _v ${BOOST_TEST_ROOT_DIR_ABS}/include/boost/test ${_hh})
get_filename_component(_v "${_v}" DIRECTORY)
string(REPLACE "/" "\\" _v "${_v}")
source_group(${_v} FILES ${_h})
endforeach()
set(BOOST_UTF_SRC
${BOOST_TEST_ROOT_DIR}/src/compiler_log_formatter.cpp
${BOOST_TEST_ROOT_DIR}/src/debug.cpp
${BOOST_TEST_ROOT_DIR}/src/decorator.cpp
${BOOST_TEST_ROOT_DIR}/src/execution_monitor.cpp
${BOOST_TEST_ROOT_DIR}/src/framework.cpp
${BOOST_TEST_ROOT_DIR}/src/junit_log_formatter.cpp
${BOOST_TEST_ROOT_DIR}/src/plain_report_formatter.cpp
${BOOST_TEST_ROOT_DIR}/src/progress_monitor.cpp
${BOOST_TEST_ROOT_DIR}/src/results_collector.cpp
${BOOST_TEST_ROOT_DIR}/src/results_reporter.cpp
${BOOST_TEST_ROOT_DIR}/src/test_framework_init_observer.cpp
${BOOST_TEST_ROOT_DIR}/src/test_tools.cpp
${BOOST_TEST_ROOT_DIR}/src/test_tree.cpp
${BOOST_TEST_ROOT_DIR}/src/unit_test_log.cpp
${BOOST_TEST_ROOT_DIR}/src/unit_test_main.cpp
${BOOST_TEST_ROOT_DIR}/src/unit_test_monitor.cpp
${BOOST_TEST_ROOT_DIR}/src/unit_test_parameters.cpp
${BOOST_TEST_ROOT_DIR}/src/xml_log_formatter.cpp
${BOOST_TEST_ROOT_DIR}/src/xml_report_formatter.cpp
)
add_library(boost_test_framework
STATIC
${BOOST_UTF_HEADERS}
${BOOST_UTF_SRC})
#target_compile_definitions(boost_test_framework PUBLIC "-DBOOST_TEST_DYN_LINK=0")
target_include_directories(boost_test_framework PUBLIC ${BOOST_TEST_ROOT_DIR}/include/)
set_target_properties(boost_test_framework PROPERTIES FOLDER "UTF")
add_library(boost_test_framework_shared
SHARED
${BOOST_UTF_HEADERS}
${BOOST_UTF_SRC})
target_compile_definitions(boost_test_framework_shared PUBLIC "-DBOOST_TEST_DYN_LINK=1")
target_include_directories(boost_test_framework_shared PUBLIC ${BOOST_TEST_ROOT_DIR}/include/)
set_target_properties(boost_test_framework_shared PROPERTIES FOLDER "UTF")
####
# Documentation files (files only, no target)
file(GLOB_RECURSE
BOOST_UTF_DOC_FILES
${BOOST_TEST_ROOT_DIR}/doc/*.qbk)
add_custom_target(
quickbook
SOURCES ${BOOST_UTF_DOC_FILES})
set_property(TARGET quickbook PROPERTY FOLDER "Documentation/")
####
# Unit tests
# documentation tests
file(GLOB_RECURSE
BOOST_UTF_DOC_EXAMPLES
CONFIGURE_DEPENDS
${BOOST_TEST_ROOT_DIR}/doc/examples/*.cpp)
foreach(_h IN LISTS BOOST_UTF_DOC_EXAMPLES)
get_filename_component(_hh ${_h} NAME_WE)
add_executable(doc-${_hh} ${_h} ${BOOST_TEST_ROOT_DIR}/doc/examples/${_hh}.output)
target_include_directories(doc-${_hh} PUBLIC ${BOOST_TEST_ROOT_DIR}/include/)
set_target_properties(doc-${_hh} PROPERTIES FOLDER "Doc examples")
add_test(NAME doc-${_hh}-test
COMMAND doc-${_hh})
get_filename_component(_ext ${_h} EXT)
string(FIND ${_ext} "fail" _index_fail)
if(${_index_fail} GREATER -1)
message(STATUS "test ${_hh}.${_ext} = ${_index_fail}")
set_tests_properties(doc-${_hh}-test PROPERTIES WILL_FAIL TRUE)
endif()
endforeach()
# unit tests folder
set(BOOST_TEST_UNITTESTS_FOLDER ${BOOST_TEST_ROOT_DIR}/test)
set(BOOST_TEST_EXAMPLES_FOLDER ${BOOST_TEST_ROOT_DIR}/example)
# datasets
file(GLOB
BOOST_TEST_UNITTESTS_DATASET
CONFIGURE_DEPENDS
${BOOST_TEST_UNITTESTS_FOLDER}/test-organization-ts/datasets-test/*.cpp
${BOOST_TEST_UNITTESTS_FOLDER}/test-organization-ts/datasets-test/*.hpp)
add_executable(boost_test_datasets ${BOOST_TEST_UNITTESTS_DATASET})
target_include_directories(boost_test_datasets PUBLIC ${BOOST_TEST_ROOT_DIR}/include/)
target_link_libraries(boost_test_datasets boost_test_framework)
#target_compile_definitions(boost_test_datasets PUBLIC "BOOST_TEST_DYN_LINK=0")
set_target_properties(boost_test_datasets PROPERTIES FOLDER "Unit tests")
add_test(NAME bt-unittest-dataset
COMMAND boost_test_datasets)
####
# TS writing-test-ts
set(BOOST_UTF_TESTS_IND_FILES
writing-test-ts
execution_monitor-ts
framework-ts
usage-variants-ts
utils-ts
test-organization-ts
smoke-ts
)
foreach(_ts IN LISTS BOOST_UTF_TESTS_IND_FILES)
message("parsing test suite ${_ts}")
file(GLOB
_boost_utf_current_tsuite
${BOOST_TEST_UNITTESTS_FOLDER}/${_ts}/*.cpp)
foreach(_h IN LISTS _boost_utf_current_tsuite)
get_filename_component(_hh ${_h} ABSOLUTE)
get_filename_component(_name ${_h} NAME_WE)
file(RELATIVE_PATH _v ${BOOST_TEST_UNITTESTS_FOLDER} ${_hh})
#get_filename_component(_v "${_v}" DIRECTORY)
message("adding ${_ts}/${_name}")
add_executable(${_name} ${_hh})
target_link_libraries(${_name} PRIVATE boost_test_framework)
set_target_properties(${_name} PROPERTIES FOLDER "Unit tests/${_ts}")
add_test(NAME bt-unittest-${_name}
COMMAND ${_name})
endforeach()
unset(_boost_utf_current_tsuite)
endforeach() # test suite
#
# Example code
#
set(LIST_EXAMPLES
unit_test_example_01.cpp,shared,fail
unit_test_example_02.cpp,static,fail
unit_test_example_03.cpp,static,fail
unit_test_example_04.cpp,shared,fail
unit_test_example_05.cpp,shared,fail
unit_test_example_06.cpp,shared,fail
unit_test_example_07.cpp,shared,run
unit_test_example_08.cpp,shared,run
unit_test_example_09_1.cpp,unit_test_example_09_2.cpp,shared,run
unit_test_example_10.cpp,static,fail
unit_test_example_11.cpp,static,fail
unit_test_example_12.cpp,static,link
unit_test_example_13.cpp,shared,run
unit_test_example_15.cpp,shared,fail
unit_test_example_16.cpp,shared,run
const_string_test.cpp,none,run
named_param_example.cpp,none,run
external_main_example_1.cpp,shared,fail
external_main_example_2.cpp,shared,fail
external_main_example_3.cpp,none,fail
filtering_example.cpp,static,fail
)
foreach(_var IN LISTS LIST_EXAMPLES)
string(REPLACE "," ";" _var_to_list "${_var}")
list(REVERSE _var_to_list)
list(GET _var_to_list 0 action)
list(GET _var_to_list 1 boost_test_type)
list(REMOVE_AT _var_to_list 0)
list(REMOVE_AT _var_to_list 0)
list(GET _var_to_list 0 first_file)
get_filename_component(_name_example "${first_file}" NAME_WE)
set(_list_files)
foreach(_file IN LISTS _var_to_list)
set(_list_files ${_list_files} ${BOOST_TEST_EXAMPLES_FOLDER}/${_file})
endforeach()
add_executable(${_name_example} ${_list_files})
set_target_properties(${_name_example} PROPERTIES FOLDER "Examples")
if("${boost_test_type}" STREQUAL "shared")
target_link_libraries(${_name_example} PRIVATE boost_test_framework_shared)
elseif("${boost_test_type}" STREQUAL "static")
target_link_libraries(${_name_example} PRIVATE boost_test_framework)
elseif(NOT "${boost_test_type}" STREQUAL "none")
message(FATAL_ERROR "Wrong action for example target '${_name_example}'")
endif()
if("${action}" STREQUAL "run" OR "${action}" STREQUAL "run-fail")
add_test(NAME bt-exampletest-${_name_example}
COMMAND ${_name_example})
if("${action}" STREQUAL "run-fail")
set_tests_properties(bt-exampletest-${_name_example} PROPERTIES WILL_FAIL TRUE)
endif()
endif()
endforeach()