blob: e7d50fda40f9b5306575646d94c2b34b588de136 [file] [log] [blame]
onqtam4a655632016-05-26 14:20:52 +03001include(CMakeParseArguments)
2
3# cache this for use inside of the function
4set(CURRENT_LIST_DIR_CACHED ${CMAKE_CURRENT_LIST_DIR})
5
onqtam119cfb62017-04-17 10:46:55 +03006set_property(GLOBAL PROPERTY USE_FOLDERS ON)
7
onqtam4a655632016-05-26 14:20:52 +03008enable_testing()
9
onqtam7b7d1612018-08-17 15:56:09 +030010find_package(Threads)
11
onqtam56d91702017-04-16 21:03:58 +030012set(DOCTEST_TEST_MODE "COMPARE" CACHE STRING "Test mode - normal/run through valgrind/collect output/compare with output")
13set_property(CACHE DOCTEST_TEST_MODE PROPERTY STRINGS "NORMAL;VALGRIND;COLLECT;COMPARE")
onqtam4a655632016-05-26 14:20:52 +030014
onqtamc6cc9ff2019-03-15 17:22:50 +020015function(doctest_add_test_impl)
onqtam1fb630b2020-06-05 00:14:56 +030016 cmake_parse_arguments(ARG "NO_VALGRIND;NO_OUTPUT;XML_OUTPUT;JUNIT_OUTPUT" "NAME" "COMMAND" ${ARGN})
onqtam4a655632016-05-26 14:20:52 +030017 if(NOT "${ARG_UNPARSED_ARGUMENTS}" STREQUAL "" OR "${ARG_NAME}" STREQUAL "" OR "${ARG_COMMAND}" STREQUAL "")
onqtamdb5eee92016-09-15 17:12:50 +030018 message(FATAL_ERROR "doctest_add_test() called with wrong options!")
onqtam4a655632016-05-26 14:20:52 +030019 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +020020
onqtam4a655632016-05-26 14:20:52 +030021 set(the_test_mode NORMAL)
Claus Klein6f1241c2019-08-11 15:35:44 +020022
onqtam4a655632016-05-26 14:20:52 +030023 # construct the command that will be called by the exec_test.cmake script
24 set(the_command "")
onqtam56d91702017-04-16 21:03:58 +030025 if(${DOCTEST_TEST_MODE} STREQUAL "VALGRIND" AND NOT ARG_NO_VALGRIND)
onqtam4a655632016-05-26 14:20:52 +030026 set(the_test_mode VALGRIND)
27 set(the_command "valgrind -v --leak-check=full --track-origins=yes --error-exitcode=1")
28 endif()
29 foreach(cur ${ARG_COMMAND})
30 set(the_command "${the_command} ${cur}")
31 endforeach()
onqtamc6cc9ff2019-03-15 17:22:50 +020032 if(ARG_XML_OUTPUT)
onqtam2377a0c2019-03-20 21:04:24 +020033 set(the_command "${the_command} --reporters=xml")
onqtamc6cc9ff2019-03-15 17:22:50 +020034 set(ARG_NAME ${ARG_NAME}_xml)
35 endif()
onqtam1fb630b2020-06-05 00:14:56 +030036 if(ARG_JUNIT_OUTPUT)
37 set(the_command "${the_command} --reporters=junit")
38 set(ARG_NAME ${ARG_NAME}_junit)
39 endif()
40
onqtam4a655632016-05-26 14:20:52 +030041 # append the argument for removing paths from filenames in the output so tests give the same output everywhere
42 set(the_command "${the_command} --dt-no-path-filenames=1")
onqtam1fc3dc72017-03-14 14:30:09 +020043 # append the argument for substituting source line numbers with 0 in the output so tests give the same output when lines change a bit
44 set(the_command "${the_command} --dt-no-line-numbers=1")
onqtam9f934f82016-08-02 12:42:19 +030045 # append the argument for ignoring the exit code of the test programs because some are intended to have failing tests
onqtam4a655632016-05-26 14:20:52 +030046 set(the_command "${the_command} --dt-no-exitcode=1")
onqtam79076922018-05-09 21:22:31 +030047 # append the argument for using the same line format in the output - so gcc/non-gcc builds have the same output
48 set(the_command "${the_command} --dt-gnu-file-line=0")
onqtam1fb630b2020-06-05 00:14:56 +030049 # append the argument for skipping any time-related output so that the reference output from reporters is stable on CI
50 set(the_command "${the_command} --dt-no-time-in-output=1")
Claus Klein6f1241c2019-08-11 15:35:44 +020051
onqtam4a655632016-05-26 14:20:52 +030052 string(STRIP ${the_command} the_command)
Claus Klein6f1241c2019-08-11 15:35:44 +020053
onqtam56d91702017-04-16 21:03:58 +030054 if(${DOCTEST_TEST_MODE} STREQUAL "COLLECT" OR ${DOCTEST_TEST_MODE} STREQUAL "COMPARE")
onqtam4a655632016-05-26 14:20:52 +030055 if(NOT ARG_NO_OUTPUT)
56 file(MAKE_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/test_output/)
onqtam56d91702017-04-16 21:03:58 +030057 set(the_test_mode ${DOCTEST_TEST_MODE})
onqtam4a655632016-05-26 14:20:52 +030058 list(APPEND ADDITIONAL_FLAGS -DTEST_OUTPUT_FILE=${CMAKE_CURRENT_SOURCE_DIR}/test_output/${ARG_NAME}.txt)
onqtam366c3682019-03-19 13:58:02 +020059 list(APPEND ADDITIONAL_FLAGS -DTEST_TEMP_FILE=${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/temp_test_output_${ARG_NAME}.txt)
onqtam4a655632016-05-26 14:20:52 +030060 endif()
61 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +020062
onqtam4a655632016-05-26 14:20:52 +030063 list(APPEND ADDITIONAL_FLAGS -DTEST_MODE=${the_test_mode})
Claus Klein6f1241c2019-08-11 15:35:44 +020064
onqtamdb5eee92016-09-15 17:12:50 +030065 add_test(NAME ${ARG_NAME} COMMAND ${CMAKE_COMMAND} -DCOMMAND=${the_command} ${ADDITIONAL_FLAGS} -P ${CURRENT_LIST_DIR_CACHED}/exec_test.cmake)
onqtam4a655632016-05-26 14:20:52 +030066endfunction()
67
onqtamc6cc9ff2019-03-15 17:22:50 +020068# a custom version of add_test() to suite my needs
69function(doctest_add_test)
70 doctest_add_test_impl(${ARGN})
onqtam2377a0c2019-03-20 21:04:24 +020071 doctest_add_test_impl(${ARGN} XML_OUTPUT)
onqtam1fb630b2020-06-05 00:14:56 +030072 doctest_add_test_impl(${ARGN} JUNIT_OUTPUT)
onqtamc6cc9ff2019-03-15 17:22:50 +020073endfunction()
74
onqtam4a655632016-05-26 14:20:52 +030075macro(add_compiler_flags)
76 foreach(flag ${ARGV})
77 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}")
78 endforeach()
79endmacro()
80
81if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
82 add_compiler_flags(-Werror)
onqtam4a655632016-05-26 14:20:52 +030083 add_compiler_flags(-fstrict-aliasing)
Daan De Meyer3c6834b2019-09-10 15:40:53 +020084
85 # The following options are not valid when clang-cl is used.
86 if(NOT MSVC)
87 add_compiler_flags(-pedantic)
88 add_compiler_flags(-pedantic-errors)
89 add_compiler_flags(-fvisibility=hidden)
90 endif()
onqtam4a655632016-05-26 14:20:52 +030091endif()
92
93if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
onqtamb4b95d22019-03-31 13:55:03 +030094 #add_compiler_flags(-Wno-unknown-pragmas)
onqtam4a655632016-05-26 14:20:52 +030095 add_compiler_flags(-Wall)
96 add_compiler_flags(-Wextra)
onqtam4a655632016-05-26 14:20:52 +030097 add_compiler_flags(-fdiagnostics-show-option)
98 add_compiler_flags(-Wconversion)
onqtam4a655632016-05-26 14:20:52 +030099 add_compiler_flags(-Wold-style-cast)
100 add_compiler_flags(-Wfloat-equal)
101 add_compiler_flags(-Wlogical-op)
102 add_compiler_flags(-Wundef)
103 add_compiler_flags(-Wredundant-decls)
104 add_compiler_flags(-Wshadow)
105 add_compiler_flags(-Wstrict-overflow=5)
106 add_compiler_flags(-Wwrite-strings)
107 add_compiler_flags(-Wpointer-arith)
108 add_compiler_flags(-Wcast-qual)
109 add_compiler_flags(-Wformat=2)
110 add_compiler_flags(-Wswitch-default)
111 add_compiler_flags(-Wmissing-include-dirs)
112 add_compiler_flags(-Wcast-align)
onqtam4a655632016-05-26 14:20:52 +0300113 add_compiler_flags(-Wswitch-enum)
onqtam4a655632016-05-26 14:20:52 +0300114 add_compiler_flags(-Wnon-virtual-dtor)
onqtam4a655632016-05-26 14:20:52 +0300115 add_compiler_flags(-Wctor-dtor-privacy)
onqtam4a655632016-05-26 14:20:52 +0300116 add_compiler_flags(-Wsign-conversion)
117 add_compiler_flags(-Wdisabled-optimization)
118 add_compiler_flags(-Weffc++)
onqtam4a655632016-05-26 14:20:52 +0300119 add_compiler_flags(-Winvalid-pch)
onqtam4a655632016-05-26 14:20:52 +0300120 add_compiler_flags(-Wmissing-declarations)
121 add_compiler_flags(-Woverloaded-virtual)
onqtama726e9e2019-03-31 13:34:09 +0300122 add_compiler_flags(-Wunused-but-set-variable)
123 add_compiler_flags(-Wunused-result)
Claus Klein6f1241c2019-08-11 15:35:44 +0200124
onqtamc30dcc22019-03-31 14:01:53 +0300125 # add_compiler_flags(-Wsuggest-override)
onqtam3433fba2019-03-31 13:59:26 +0300126 # add_compiler_flags(-Wmultiple-inheritance)
127 # add_compiler_flags(-Wcatch-value)
Claus Klein6f1241c2019-08-11 15:35:44 +0200128 # add_compiler_flags(-Wsuggest-attribute=cold)
onqtamb4b95d22019-03-31 13:55:03 +0300129 # add_compiler_flags(-Wsuggest-attribute=const)
130 # add_compiler_flags(-Wsuggest-attribute=format)
131 # add_compiler_flags(-Wsuggest-attribute=malloc)
132 # add_compiler_flags(-Wsuggest-attribute=noreturn)
133 # add_compiler_flags(-Wsuggest-attribute=pure)
134 # add_compiler_flags(-Wsuggest-final-methods)
135 # add_compiler_flags(-Wsuggest-final-types)
Claus Klein6f1241c2019-08-11 15:35:44 +0200136
onqtamb4b95d22019-03-31 13:55:03 +0300137 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.6)
138 add_compiler_flags(-Wnoexcept)
139 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +0200140
Viktor Kirilove38428f2021-03-21 16:13:34 +0200141 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
142 add_compiler_flags(-Wno-missing-field-initializers)
143 endif()
144
onqtamabf39d22017-10-28 21:30:45 +0300145 # no way to silence it in the expression decomposition macros: _Pragma() in macros doesn't work for the c++ front-end of g++
146 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55578
147 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69543
Antoine Cœurf55bdc72020-02-03 03:31:02 +0800148 # Also the warning is completely worthless nowadays - https://stackoverflow.com/questions/14016993
onqtamabf39d22017-10-28 21:30:45 +0300149 #add_compiler_flags(-Waggregate-return)
Claus Klein6f1241c2019-08-11 15:35:44 +0200150
onqtamb4b95d22019-03-31 13:55:03 +0300151 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
152 add_compiler_flags(-Wdouble-promotion)
153 add_compiler_flags(-Wtrampolines)
154 add_compiler_flags(-Wzero-as-null-pointer-constant)
155 add_compiler_flags(-Wuseless-cast)
156 add_compiler_flags(-Wvector-operation-performance)
157 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +0200158
onqtamb4b95d22019-03-31 13:55:03 +0300159 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.0)
160 add_compiler_flags(-Wshift-overflow=2)
161 add_compiler_flags(-Wnull-dereference)
162 add_compiler_flags(-Wduplicated-cond)
163 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +0200164
onqtamb4b95d22019-03-31 13:55:03 +0300165 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0)
166 add_compiler_flags(-Walloc-zero)
167 add_compiler_flags(-Walloca)
168 add_compiler_flags(-Wduplicated-branches)
169 endif()
Claus Klein6f1241c2019-08-11 15:35:44 +0200170
onqtamb4b95d22019-03-31 13:55:03 +0300171 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0)
172 add_compiler_flags(-Wcast-align=strict)
173 endif()
onqtam4a655632016-05-26 14:20:52 +0300174endif()
175
Daan De Meyerf9726022019-10-10 22:16:49 +0200176# necessary for some older compilers which don't default to C++11
177set(CMAKE_CXX_STANDARD 11)
178set(CMAKE_CXX_STANDARD_REQUIRED ON)
Claus Klein6f1241c2019-08-11 15:35:44 +0200179
onqtam4a655632016-05-26 14:20:52 +0300180if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
181 add_compiler_flags(-Weverything)
onqtam4d87d562018-07-03 22:23:42 +0300182 add_compiler_flags(-Wno-c++98-compat)
183 add_compiler_flags(-Wno-c++98-compat-pedantic)
184 add_compiler_flags(-Wno-c++98-compat-bind-to-temporary-copy)
185 add_compiler_flags(-Wno-c++98-compat-local-type-template-args)
onqtam443c7072022-01-10 14:40:50 +0200186 add_compiler_flags(-Qunused-arguments -fcolor-diagnostics) # needed for ccache integration
onqtam4a655632016-05-26 14:20:52 +0300187endif()
188
Martin Moened8a7edc2017-08-01 17:08:08 +0200189if(MSVC)
onqtam8edeaaf2016-08-16 07:12:58 +0300190 add_compiler_flags(/std:c++latest) # for post c++14 updates in MSVC
onqtam50cbb802017-12-09 17:17:39 +0200191 add_compiler_flags(/permissive-) # force standard conformance - this is the better flag than /Za
onqtam4a655632016-05-26 14:20:52 +0300192 add_compiler_flags(/WX)
onqtamabf39d22017-10-28 21:30:45 +0300193 add_compiler_flags(/Wall) # turns on warnings from levels 1 through 4 which are off by default - https://msdn.microsoft.com/en-us/library/23k5d385.aspx
Claus Klein6f1241c2019-08-11 15:35:44 +0200194
onqtamabf39d22017-10-28 21:30:45 +0300195 add_compiler_flags(
196 /wd4514 # unreferenced inline function has been removed
197 /wd4571 # SEH related
198 /wd4710 # function not inlined
199 /wd4711 # function 'x' selected for automatic inline expansion
Claus Klein6f1241c2019-08-11 15:35:44 +0200200
onqtam5ed699b2017-10-28 21:57:15 +0300201 /wd4616 # invalid compiler warnings - https://msdn.microsoft.com/en-us/library/t7ab6xtd.aspx
202 /wd4619 # invalid compiler warnings - https://msdn.microsoft.com/en-us/library/tacee08d.aspx
Claus Klein6f1241c2019-08-11 15:35:44 +0200203
onqtam5ed699b2017-10-28 21:57:15 +0300204 #/wd4820 # padding in structs
205 #/wd4625 # copy constructor was implicitly defined as deleted
206 #/wd4626 # assignment operator was implicitly defined as deleted
207 #/wd5027 # move assignment operator was implicitly defined as deleted
208 #/wd5026 # move constructor was implicitly defined as deleted
209 #/wd4623 # default constructor was implicitly defined as deleted
onqtamabf39d22017-10-28 21:30:45 +0300210 )
onqtam4a655632016-05-26 14:20:52 +0300211endif()