blob: 6c70aba43d68ec9403638d91530563b57edf6b74 [file] [log] [blame]
onqtam7cc0e962017-04-17 23:30:36 +03001################################################################################
2## BUILD ALL EXAMPLE SOURCES INTO A SINGLE BINARY AND EXECUTE TESTS ON EACH FILE
3################################################################################
4
onqtamc9b4e1f2018-08-17 14:20:59 +03005set(files_with_output
onqtam98e12af2017-04-16 22:11:21 +03006 main.cpp
onqtam12d55982017-04-16 22:35:27 +03007 doctest_proxy.h
onqtam7cc0e962017-04-17 23:30:36 +03008 header.h
onqtam98e12af2017-04-16 22:11:21 +03009 alternative_macros.cpp
10 assertion_macros.cpp
11 stringification.cpp
12 subcases.cpp
onqtam119cfb62017-04-17 10:46:55 +030013 logging.cpp
14 templated_test_cases.cpp
onqtam378d6702017-04-19 11:30:03 +030015 test_cases_and_suites.cpp
onqtam8171c482018-07-03 20:31:18 +030016 asserts_used_outside_of_tests.cpp
onqtam98e12af2017-04-16 22:11:21 +030017)
18
onqtamc9b4e1f2018-08-17 14:20:59 +030019set(files_all
20 ${files_with_output}
21 concurrency.cpp
22 ../../scripts/coverage_maxout.cpp
23)
24
onqtam3ac4c3f2018-06-01 15:31:06 +030025# add the executable
onqtam36e37452019-03-02 20:10:05 +020026add_executable(all_features ${files_all})
27target_link_libraries(all_features doctest ${CMAKE_THREAD_LIBS_INIT})
onqtam3ac4c3f2018-06-01 15:31:06 +030028
onqtamf0f899b2017-05-02 21:40:41 +030029# easy way to fix test coverage - disable colors and crash handling
onqtam36e37452019-03-02 20:10:05 +020030target_compile_definitions(all_features PRIVATE
onqtamf0f899b2017-05-02 21:40:41 +030031 DOCTEST_CONFIG_COLORS_NONE
32 DOCTEST_CONFIG_NO_POSIX_SIGNALS
33 DOCTEST_CONFIG_NO_WINDOWS_SEH)
onqtam98e12af2017-04-16 22:11:21 +030034
onqtam3ac4c3f2018-06-01 15:31:06 +030035# omit the version and the num test cases skipped from the summary - this way the output will change less often
onqtam36e37452019-03-02 20:10:05 +020036set(common_args COMMAND $<TARGET_FILE:all_features> --no-skipped-summary --no-version --reporters=console)
onqtam76305352017-05-01 20:25:09 +030037
onqtam98e12af2017-04-16 22:11:21 +030038# add per-file tests
onqtamc9b4e1f2018-08-17 14:20:59 +030039foreach(f ${files_with_output})
onqtam5dbcb1e2017-05-02 23:07:56 +030040 doctest_add_test(NAME ${f} ${common_args} -sf=*${f})
onqtam98e12af2017-04-16 22:11:21 +030041endforeach()
42
onqtamc9b4e1f2018-08-17 14:20:59 +030043# add this separately since it shouldn't have output compared to reference output - due to concurrency
onqtam7b7bb8a2018-08-17 16:20:16 +030044# not adding it for MinGW since it crashes when using mingw-w64-x86_64-8.1.0-release-posix-seh-rt_v6-rev0
onqtamb031dd02019-01-15 20:25:19 +020045# (also disabled for old XCode builds on travis where there is no thread_local support and this is defined in the build matrix)
onqtameb89a022019-01-14 00:16:11 +020046if(NOT MINGW AND NOT DEFINED DOCTEST_THREAD_LOCAL)
onqtamacbcd122019-03-02 21:24:18 +020047 doctest_add_test(NO_OUTPUT NAME concurrency.cpp ${common_args} -sf=*concurrency.cpp -d) # duration: there is no output anyway
onqtam7b7bb8a2018-08-17 16:20:16 +030048endif()
onqtamc9b4e1f2018-08-17 14:20:59 +030049
onqtam3ac4c3f2018-06-01 15:31:06 +030050# add this separately since the file has a non-straightforward path
51doctest_add_test(NAME coverage_maxout.cpp ${common_args} -sf=*coverage_maxout.cpp)
52
onqtam76305352017-05-01 20:25:09 +030053# queries
onqtam36e37452019-03-02 20:10:05 +020054doctest_add_test(NAME version COMMAND $<TARGET_FILE:all_features> -v)
onqtam5dbcb1e2017-05-02 23:07:56 +030055doctest_add_test(NAME help ${common_args} -h)
56doctest_add_test(NAME count ${common_args} -c -sf=*coverage*)
57doctest_add_test(NAME list_test_cases ${common_args} -ltc -sf=*coverage*)
58doctest_add_test(NAME list_test_suites ${common_args} -lts -sf=*coverage*)
onqtam3ac4c3f2018-06-01 15:31:06 +030059doctest_add_test(NAME list_reporters ${common_args} -lr -sf=*coverage*)
onqtam321f2702017-05-01 19:14:58 +030060
onqtam89da6542017-05-02 21:10:42 +030061# options
onqtam5dbcb1e2017-05-02 23:07:56 +030062doctest_add_test(NAME all_binary ${common_args} -tc=all?binary* -s) # print all binary asserts - for getAssertString()
63doctest_add_test(NAME abort_after ${common_args} -aa=2 -e=off -sf=*coverage*) # abort after 2 assert fails and parse a negative
64doctest_add_test(NAME first_last ${common_args} -f=2 -l=4 -sf=*coverage*) # run a range
onqtam14ddb1e2017-05-02 23:19:09 +030065doctest_add_test(NAME filter_1 ${common_args} -ts=none) # should filter out all
onqtam36e37452019-03-02 20:10:05 +020066doctest_add_test(NAME filter_2 COMMAND $<TARGET_FILE:all_features> -tse=* -nv) # should filter out all + print skipped
onqtam14ddb1e2017-05-02 23:19:09 +030067doctest_add_test(NAME filter_3 ${common_args} -sc=from*,sc* -sce=sc2 -sf=*subcases*) # enter a specific subcase - sc1
onqtame6412e12017-05-07 16:21:36 +030068doctest_add_test(NAME order_1 ${common_args} -ob=suite -ns -sf=*test_cases_and_suites*)
onqtam14ddb1e2017-05-02 23:19:09 +030069doctest_add_test(NAME order_2 ${common_args} -ob=name -sf=*test_cases_and_suites*)
70doctest_add_test(NAME order_3 ${common_args} -ob=rand -sfe=*) # exclude everything for no output
onqtame0f18802017-04-16 23:38:33 +030071
onqtam7cc0e962017-04-17 23:30:36 +030072################################################################################
73## VARIATION OF THE BUILD WITH DOCTEST DISABLED - SHOULD STILL COMPILE
74################################################################################
75
onqtamaec53d22017-05-03 06:29:47 +030076if(DEFINED ENV{CODE_COVERAGE})
77 return() # do not continue with the disabled example
78endif()
onqtamf6d1a512017-05-01 13:56:12 +030079
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010080add_executable(disabled ${files_all})
onqtame0f18802017-04-16 23:38:33 +030081target_compile_definitions(disabled PRIVATE DOCTEST_CONFIG_DISABLE)
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010082target_link_libraries(disabled doctest ${CMAKE_THREAD_LIBS_INIT})
onqtam7cc0e962017-04-17 23:30:36 +030083
onqtame0f18802017-04-16 23:38:33 +030084doctest_add_test(NAME disabled COMMAND $<TARGET_FILE:disabled>)
onqtam7cc0e962017-04-17 23:30:36 +030085
onqtamd320ac22017-04-17 11:44:32 +030086# TODO: think about fixing these in a different way! - see issue #61 or commit 6b61e8aa3818c5ea100cedc1bb48a60ea10df6e8
Martin Moened8a7edc2017-08-01 17:08:08 +020087if(MSVC)
onqtamd320ac22017-04-17 11:44:32 +030088 target_compile_options(disabled PRIVATE /wd4505) # unreferenced local function has been removed
onqtamcb7bad62017-04-19 11:19:57 +030089 target_compile_options(disabled PRIVATE /wd4100) # unreferenced formal parameter
onqtamaf07cbb2017-04-19 19:40:43 +030090 target_compile_options(disabled PRIVATE /wd4189) # local variable is initialized but not referenced
onqtamd320ac22017-04-17 11:44:32 +030091elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
onqtam135a50e2017-04-18 11:48:20 +030092 target_compile_options(disabled PRIVATE -Wno-unknown-warning-option)
onqtamd320ac22017-04-17 11:44:32 +030093 target_compile_options(disabled PRIVATE -Wno-unneeded-internal-declaration)
onqtama82c1e42017-05-07 17:36:41 +030094 target_compile_options(disabled PRIVATE -Wno-unused-function)
onqtamcb7bad62017-04-19 11:19:57 +030095 target_compile_options(disabled PRIVATE -Wno-unused-parameter)
onqtamc79b7542017-04-19 20:47:13 +030096 target_compile_options(disabled PRIVATE -Wno-unused-variable)
onqtameb96d162017-09-11 14:26:32 +030097 target_compile_options(disabled PRIVATE -Wno-unused-template)
onqtamc79b7542017-04-19 20:47:13 +030098elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
onqtamcb7bad62017-04-19 11:19:57 +030099 target_compile_options(disabled PRIVATE -Wno-unused-function)
onqtamc79b7542017-04-19 20:47:13 +0300100 target_compile_options(disabled PRIVATE -Wno-unused-parameter)
onqtamaf07cbb2017-04-19 19:40:43 +0300101 target_compile_options(disabled PRIVATE -Wno-unused-variable)
onqtamd320ac22017-04-17 11:44:32 +0300102endif()