blob: cd0404d0617f2da9dd422dcfc5a1ed3edc85160d [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)
16 cmake_parse_arguments(ARG "NO_VALGRIND;NO_OUTPUT;XML_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()
20
21 set(the_test_mode NORMAL)
22
23 # 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()
onqtam4a655632016-05-26 14:20:52 +030036 # append the argument for removing paths from filenames in the output so tests give the same output everywhere
37 set(the_command "${the_command} --dt-no-path-filenames=1")
onqtam1fc3dc72017-03-14 14:30:09 +020038 # append the argument for substituting source line numbers with 0 in the output so tests give the same output when lines change a bit
39 set(the_command "${the_command} --dt-no-line-numbers=1")
onqtam9f934f82016-08-02 12:42:19 +030040 # 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 +030041 set(the_command "${the_command} --dt-no-exitcode=1")
onqtam79076922018-05-09 21:22:31 +030042 # append the argument for using the same line format in the output - so gcc/non-gcc builds have the same output
43 set(the_command "${the_command} --dt-gnu-file-line=0")
onqtam4a655632016-05-26 14:20:52 +030044
45 string(STRIP ${the_command} the_command)
46
onqtam56d91702017-04-16 21:03:58 +030047 if(${DOCTEST_TEST_MODE} STREQUAL "COLLECT" OR ${DOCTEST_TEST_MODE} STREQUAL "COMPARE")
onqtam4a655632016-05-26 14:20:52 +030048 if(NOT ARG_NO_OUTPUT)
49 file(MAKE_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/test_output/)
onqtam56d91702017-04-16 21:03:58 +030050 set(the_test_mode ${DOCTEST_TEST_MODE})
onqtam4a655632016-05-26 14:20:52 +030051 list(APPEND ADDITIONAL_FLAGS -DTEST_OUTPUT_FILE=${CMAKE_CURRENT_SOURCE_DIR}/test_output/${ARG_NAME}.txt)
onqtam366c3682019-03-19 13:58:02 +020052 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 +030053 endif()
54 endif()
55
56 list(APPEND ADDITIONAL_FLAGS -DTEST_MODE=${the_test_mode})
57
onqtamdb5eee92016-09-15 17:12:50 +030058 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 +030059endfunction()
60
onqtamc6cc9ff2019-03-15 17:22:50 +020061# a custom version of add_test() to suite my needs
62function(doctest_add_test)
63 doctest_add_test_impl(${ARGN})
onqtam2377a0c2019-03-20 21:04:24 +020064 doctest_add_test_impl(${ARGN} XML_OUTPUT)
onqtamc6cc9ff2019-03-15 17:22:50 +020065endfunction()
66
onqtam4a655632016-05-26 14:20:52 +030067macro(add_compiler_flags)
68 foreach(flag ${ARGV})
69 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}")
70 endforeach()
71endmacro()
72
73if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
74 add_compiler_flags(-Werror)
onqtam4a655632016-05-26 14:20:52 +030075 add_compiler_flags(-pedantic)
76 add_compiler_flags(-pedantic-errors)
77 add_compiler_flags(-fvisibility=hidden)
78 add_compiler_flags(-fstrict-aliasing)
79endif()
80
81if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
onqtam5aba9f52019-03-31 13:55:03 +030082 #add_compiler_flags(-Wno-unknown-pragmas)
onqtam4a655632016-05-26 14:20:52 +030083 add_compiler_flags(-Wall)
84 add_compiler_flags(-Wextra)
onqtam4a655632016-05-26 14:20:52 +030085 add_compiler_flags(-fdiagnostics-show-option)
86 add_compiler_flags(-Wconversion)
onqtam4a655632016-05-26 14:20:52 +030087 add_compiler_flags(-Wold-style-cast)
88 add_compiler_flags(-Wfloat-equal)
89 add_compiler_flags(-Wlogical-op)
90 add_compiler_flags(-Wundef)
91 add_compiler_flags(-Wredundant-decls)
92 add_compiler_flags(-Wshadow)
93 add_compiler_flags(-Wstrict-overflow=5)
94 add_compiler_flags(-Wwrite-strings)
95 add_compiler_flags(-Wpointer-arith)
96 add_compiler_flags(-Wcast-qual)
97 add_compiler_flags(-Wformat=2)
98 add_compiler_flags(-Wswitch-default)
99 add_compiler_flags(-Wmissing-include-dirs)
100 add_compiler_flags(-Wcast-align)
onqtam4a655632016-05-26 14:20:52 +0300101 add_compiler_flags(-Wswitch-enum)
onqtam4a655632016-05-26 14:20:52 +0300102 add_compiler_flags(-Wnon-virtual-dtor)
onqtam4a655632016-05-26 14:20:52 +0300103 add_compiler_flags(-Wctor-dtor-privacy)
onqtam4a655632016-05-26 14:20:52 +0300104 add_compiler_flags(-Wsign-conversion)
105 add_compiler_flags(-Wdisabled-optimization)
106 add_compiler_flags(-Weffc++)
107 add_compiler_flags(-Winline)
108 add_compiler_flags(-Winvalid-pch)
onqtam4a655632016-05-26 14:20:52 +0300109 add_compiler_flags(-Wmissing-declarations)
110 add_compiler_flags(-Woverloaded-virtual)
onqtam8c3e2962019-03-31 13:34:09 +0300111 add_compiler_flags(-Wunused-but-set-variable)
112 add_compiler_flags(-Wunused-result)
onqtam5aba9f52019-03-31 13:55:03 +0300113
onqtamc1de39c2019-03-31 14:01:53 +0300114 # add_compiler_flags(-Wsuggest-override)
onqtam2990d732019-03-31 13:59:26 +0300115 # add_compiler_flags(-Wmultiple-inheritance)
116 # add_compiler_flags(-Wcatch-value)
onqtam5aba9f52019-03-31 13:55:03 +0300117 # add_compiler_flags(-Wsuggest-attribute=cold)
118 # add_compiler_flags(-Wsuggest-attribute=const)
119 # add_compiler_flags(-Wsuggest-attribute=format)
120 # add_compiler_flags(-Wsuggest-attribute=malloc)
121 # add_compiler_flags(-Wsuggest-attribute=noreturn)
122 # add_compiler_flags(-Wsuggest-attribute=pure)
123 # add_compiler_flags(-Wsuggest-final-methods)
124 # add_compiler_flags(-Wsuggest-final-types)
125
126 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.6)
127 add_compiler_flags(-Wnoexcept)
128 endif()
onqtam8c3e2962019-03-31 13:34:09 +0300129
onqtamabf39d22017-10-28 21:30:45 +0300130 # no way to silence it in the expression decomposition macros: _Pragma() in macros doesn't work for the c++ front-end of g++
131 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55578
132 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69543
133 # Also the warning is completely worthless nowadays - http://stackoverflow.com/questions/14016993
134 #add_compiler_flags(-Waggregate-return)
onqtam5aba9f52019-03-31 13:55:03 +0300135
136 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
137 add_compiler_flags(-Wdouble-promotion)
138 add_compiler_flags(-Wtrampolines)
139 add_compiler_flags(-Wzero-as-null-pointer-constant)
140 add_compiler_flags(-Wuseless-cast)
141 add_compiler_flags(-Wvector-operation-performance)
142 endif()
143
144 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.0)
145 add_compiler_flags(-Wshift-overflow=2)
146 add_compiler_flags(-Wnull-dereference)
147 add_compiler_flags(-Wduplicated-cond)
148 endif()
149
150 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0)
151 add_compiler_flags(-Walloc-zero)
152 add_compiler_flags(-Walloca)
153 add_compiler_flags(-Wduplicated-branches)
154 endif()
155
156 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0)
157 add_compiler_flags(-Wcast-align=strict)
158 endif()
onqtam4a655632016-05-26 14:20:52 +0300159endif()
160
161if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
162 add_compiler_flags(-Weverything)
onqtam4d87d562018-07-03 22:23:42 +0300163 add_compiler_flags(-Wno-c++98-compat)
164 add_compiler_flags(-Wno-c++98-compat-pedantic)
165 add_compiler_flags(-Wno-c++98-compat-bind-to-temporary-copy)
166 add_compiler_flags(-Wno-c++98-compat-local-type-template-args)
onqtam4a655632016-05-26 14:20:52 +0300167 add_compiler_flags(-Qunused-arguments -fcolor-diagnostics) # needed for ccache integration on travis
168endif()
169
Martin Moened8a7edc2017-08-01 17:08:08 +0200170if(MSVC)
onqtam8edeaaf2016-08-16 07:12:58 +0300171 add_compiler_flags(/std:c++latest) # for post c++14 updates in MSVC
onqtam50cbb802017-12-09 17:17:39 +0200172 add_compiler_flags(/permissive-) # force standard conformance - this is the better flag than /Za
onqtam4a655632016-05-26 14:20:52 +0300173 add_compiler_flags(/WX)
onqtamabf39d22017-10-28 21:30:45 +0300174 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
175
176 add_compiler_flags(
177 /wd4514 # unreferenced inline function has been removed
178 /wd4571 # SEH related
179 /wd4710 # function not inlined
180 /wd4711 # function 'x' selected for automatic inline expansion
onqtam5ed699b2017-10-28 21:57:15 +0300181
182 /wd4616 # invalid compiler warnings - https://msdn.microsoft.com/en-us/library/t7ab6xtd.aspx
183 /wd4619 # invalid compiler warnings - https://msdn.microsoft.com/en-us/library/tacee08d.aspx
184
185 #/wd4820 # padding in structs
186 #/wd4625 # copy constructor was implicitly defined as deleted
187 #/wd4626 # assignment operator was implicitly defined as deleted
188 #/wd5027 # move assignment operator was implicitly defined as deleted
189 #/wd5026 # move constructor was implicitly defined as deleted
190 #/wd4623 # default constructor was implicitly defined as deleted
onqtamabf39d22017-10-28 21:30:45 +0300191 )
onqtam4a655632016-05-26 14:20:52 +0300192endif()