blob: e68fd9e0067b733fd12066693fedef75015248af [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
onqtama1a38de2019-03-16 19:11:36 +020012 reporters_and_listeners.cpp
onqtam98e12af2017-04-16 22:11:21 +030013 subcases.cpp
onqtam119cfb62017-04-17 10:46:55 +030014 logging.cpp
15 templated_test_cases.cpp
onqtam378d6702017-04-19 11:30:03 +030016 test_cases_and_suites.cpp
onqtam8171c482018-07-03 20:31:18 +030017 asserts_used_outside_of_tests.cpp
onqtam98e12af2017-04-16 22:11:21 +030018)
19
onqtamc9b4e1f2018-08-17 14:20:59 +030020set(files_all
21 ${files_with_output}
22 concurrency.cpp
23 ../../scripts/coverage_maxout.cpp
24)
25
onqtam3ac4c3f2018-06-01 15:31:06 +030026# add the executable
onqtam36e37452019-03-02 20:10:05 +020027add_executable(all_features ${files_all})
28target_link_libraries(all_features doctest ${CMAKE_THREAD_LIBS_INIT})
onqtam3ac4c3f2018-06-01 15:31:06 +030029
onqtamf0f899b2017-05-02 21:40:41 +030030# easy way to fix test coverage - disable colors and crash handling
onqtam36e37452019-03-02 20:10:05 +020031target_compile_definitions(all_features PRIVATE
onqtamf0f899b2017-05-02 21:40:41 +030032 DOCTEST_CONFIG_COLORS_NONE
33 DOCTEST_CONFIG_NO_POSIX_SIGNALS
34 DOCTEST_CONFIG_NO_WINDOWS_SEH)
onqtam98e12af2017-04-16 22:11:21 +030035
onqtam3ac4c3f2018-06-01 15:31:06 +030036# omit the version and the num test cases skipped from the summary - this way the output will change less often
onqtam585bb712019-03-16 17:46:58 +020037set(common_args COMMAND $<TARGET_FILE:all_features> --no-skipped-summary --no-version)
onqtam76305352017-05-01 20:25:09 +030038
onqtam98e12af2017-04-16 22:11:21 +030039# add per-file tests
onqtamc9b4e1f2018-08-17 14:20:59 +030040foreach(f ${files_with_output})
onqtam5dbcb1e2017-05-02 23:07:56 +030041 doctest_add_test(NAME ${f} ${common_args} -sf=*${f})
onqtam98e12af2017-04-16 22:11:21 +030042endforeach()
43
onqtamc9b4e1f2018-08-17 14:20:59 +030044# add this separately since it shouldn't have output compared to reference output - due to concurrency
onqtam7b7bb8a2018-08-17 16:20:16 +030045# 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 +020046# (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 +020047if(NOT MINGW AND NOT DEFINED DOCTEST_THREAD_LOCAL)
onqtamacbcd122019-03-02 21:24:18 +020048 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 +030049endif()
onqtamc9b4e1f2018-08-17 14:20:59 +030050
onqtam3ac4c3f2018-06-01 15:31:06 +030051# add this separately since the file has a non-straightforward path
52doctest_add_test(NAME coverage_maxout.cpp ${common_args} -sf=*coverage_maxout.cpp)
53
onqtam76305352017-05-01 20:25:09 +030054# queries
onqtam36e37452019-03-02 20:10:05 +020055doctest_add_test(NAME version COMMAND $<TARGET_FILE:all_features> -v)
onqtam5dbcb1e2017-05-02 23:07:56 +030056doctest_add_test(NAME help ${common_args} -h)
onqtam2377a0c2019-03-20 21:04:24 +020057doctest_add_test(NO_OUTPUT NAME outfile ${common_args} -c -out=temp) # just to exercise the output option
onqtam5dbcb1e2017-05-02 23:07:56 +030058doctest_add_test(NAME count ${common_args} -c -sf=*coverage*)
59doctest_add_test(NAME list_test_cases ${common_args} -ltc -sf=*coverage*)
60doctest_add_test(NAME list_test_suites ${common_args} -lts -sf=*coverage*)
onqtam3ac4c3f2018-06-01 15:31:06 +030061doctest_add_test(NAME list_reporters ${common_args} -lr -sf=*coverage*)
onqtam321f2702017-05-01 19:14:58 +030062
onqtam89da6542017-05-02 21:10:42 +030063# options
onqtam5dbcb1e2017-05-02 23:07:56 +030064doctest_add_test(NAME all_binary ${common_args} -tc=all?binary* -s) # print all binary asserts - for getAssertString()
65doctest_add_test(NAME abort_after ${common_args} -aa=2 -e=off -sf=*coverage*) # abort after 2 assert fails and parse a negative
66doctest_add_test(NAME first_last ${common_args} -f=2 -l=4 -sf=*coverage*) # run a range
onqtam14ddb1e2017-05-02 23:19:09 +030067doctest_add_test(NAME filter_1 ${common_args} -ts=none) # should filter out all
onqtam36e37452019-03-02 20:10:05 +020068doctest_add_test(NAME filter_2 COMMAND $<TARGET_FILE:all_features> -tse=* -nv) # should filter out all + print skipped
onqtam14ddb1e2017-05-02 23:19:09 +030069doctest_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 +030070doctest_add_test(NAME order_1 ${common_args} -ob=suite -ns -sf=*test_cases_and_suites*)
onqtam14ddb1e2017-05-02 23:19:09 +030071doctest_add_test(NAME order_2 ${common_args} -ob=name -sf=*test_cases_and_suites*)
72doctest_add_test(NAME order_3 ${common_args} -ob=rand -sfe=*) # exclude everything for no output
onqtame0f18802017-04-16 23:38:33 +030073
onqtam7cc0e962017-04-17 23:30:36 +030074################################################################################
75## VARIATION OF THE BUILD WITH DOCTEST DISABLED - SHOULD STILL COMPILE
76################################################################################
77
onqtamaec53d22017-05-03 06:29:47 +030078if(DEFINED ENV{CODE_COVERAGE})
79 return() # do not continue with the disabled example
80endif()
onqtamf6d1a512017-05-01 13:56:12 +030081
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010082add_executable(disabled ${files_all})
onqtame0f18802017-04-16 23:38:33 +030083target_compile_definitions(disabled PRIVATE DOCTEST_CONFIG_DISABLE)
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010084target_link_libraries(disabled doctest ${CMAKE_THREAD_LIBS_INIT})
onqtam7cc0e962017-04-17 23:30:36 +030085
onqtame0f18802017-04-16 23:38:33 +030086doctest_add_test(NAME disabled COMMAND $<TARGET_FILE:disabled>)
onqtam7cc0e962017-04-17 23:30:36 +030087
onqtamd320ac22017-04-17 11:44:32 +030088# TODO: think about fixing these in a different way! - see issue #61 or commit 6b61e8aa3818c5ea100cedc1bb48a60ea10df6e8
Martin Moened8a7edc2017-08-01 17:08:08 +020089if(MSVC)
onqtamd320ac22017-04-17 11:44:32 +030090 target_compile_options(disabled PRIVATE /wd4505) # unreferenced local function has been removed
onqtamcb7bad62017-04-19 11:19:57 +030091 target_compile_options(disabled PRIVATE /wd4100) # unreferenced formal parameter
onqtamaf07cbb2017-04-19 19:40:43 +030092 target_compile_options(disabled PRIVATE /wd4189) # local variable is initialized but not referenced
Daan De Meyer3c6834b2019-09-10 15:40:53 +020093endif()
94
95if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
onqtam135a50e2017-04-18 11:48:20 +030096 target_compile_options(disabled PRIVATE -Wno-unknown-warning-option)
onqtamd320ac22017-04-17 11:44:32 +030097 target_compile_options(disabled PRIVATE -Wno-unneeded-internal-declaration)
onqtama82c1e42017-05-07 17:36:41 +030098 target_compile_options(disabled PRIVATE -Wno-unused-function)
onqtamcb7bad62017-04-19 11:19:57 +030099 target_compile_options(disabled PRIVATE -Wno-unused-parameter)
onqtamc79b7542017-04-19 20:47:13 +0300100 target_compile_options(disabled PRIVATE -Wno-unused-variable)
onqtameb96d162017-09-11 14:26:32 +0300101 target_compile_options(disabled PRIVATE -Wno-unused-template)
onqtamc79b7542017-04-19 20:47:13 +0300102elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
onqtamcb7bad62017-04-19 11:19:57 +0300103 target_compile_options(disabled PRIVATE -Wno-unused-function)
onqtamc79b7542017-04-19 20:47:13 +0300104 target_compile_options(disabled PRIVATE -Wno-unused-parameter)
onqtamaf07cbb2017-04-19 19:40:43 +0300105 target_compile_options(disabled PRIVATE -Wno-unused-variable)
onqtamd320ac22017-04-17 11:44:32 +0300106endif()