2015-09-23 11:43:36 -04:00
|
|
|
cmake_minimum_required(VERSION 2.8.7)
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2015-09-23 11:43:36 -04:00
|
|
|
project(GSLTests CXX)
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2017-04-25 20:08:36 -04:00
|
|
|
# will make visual studio generated project group files
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
|
|
|
if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/unittest-cpp/CMakeLists.txt)
|
|
|
|
find_package(Git)
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${GIT_EXECUTABLE} submodule update --init
|
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
)
|
2016-03-23 19:53:00 -04:00
|
|
|
endif()
|
|
|
|
|
2015-08-20 21:09:14 -04:00
|
|
|
add_subdirectory(unittest-cpp)
|
|
|
|
|
2017-04-25 20:08:36 -04:00
|
|
|
# this interface adds compile options to how the tests are run
|
|
|
|
# please try to keep entries ordered =)
|
|
|
|
add_library(gsl_tests_config INTERFACE)
|
|
|
|
target_compile_options(gsl_tests_config INTERFACE
|
|
|
|
$<$<CXX_COMPILER_ID:MSVC>:
|
|
|
|
/EHsc
|
|
|
|
/W4
|
|
|
|
/WX
|
|
|
|
>
|
|
|
|
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:
|
|
|
|
-fno-strict-aliasing
|
|
|
|
-Wall
|
|
|
|
-Wcast-align
|
|
|
|
-Wconversion
|
|
|
|
-Wctor-dtor-privacy
|
|
|
|
-Werror
|
|
|
|
-Wextra
|
|
|
|
-Wno-missing-braces
|
|
|
|
-Wnon-virtual-dtor
|
|
|
|
-Wold-style-cast
|
|
|
|
-Woverloaded-virtual
|
|
|
|
-Wpedantic
|
|
|
|
-Wshadow
|
|
|
|
-Wsign-conversion
|
|
|
|
>
|
|
|
|
)
|
|
|
|
|
|
|
|
# set test to include the unittest-cpp headers
|
|
|
|
# this shiuld be removed when UnitTest++ has the proper headers
|
|
|
|
target_include_directories(gsl_tests_config INTERFACE
|
2015-08-20 21:09:14 -04:00
|
|
|
./unittest-cpp
|
|
|
|
)
|
|
|
|
|
2017-04-25 20:08:36 -04:00
|
|
|
# set definitions for tests
|
|
|
|
target_compile_definitions(gsl_tests_config INTERFACE
|
|
|
|
GSL_THROW_ON_CONTRACT_VIOLATION
|
|
|
|
)
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2015-09-21 15:04:06 -04:00
|
|
|
function(add_gsl_test name)
|
2017-02-07 18:59:37 -05:00
|
|
|
add_executable(${name} ${name}.cpp)
|
2017-04-25 20:08:36 -04:00
|
|
|
target_link_libraries(${name}
|
|
|
|
UnitTest++
|
|
|
|
GSL
|
|
|
|
gsl_tests_config
|
|
|
|
)
|
2015-09-21 15:04:06 -04:00
|
|
|
add_test(
|
2015-09-23 11:43:36 -04:00
|
|
|
${name}
|
|
|
|
${name}
|
2015-09-21 15:04:06 -04:00
|
|
|
)
|
2017-04-25 20:08:36 -04:00
|
|
|
# group all tests under GSL_tests
|
|
|
|
set_property(TARGET ${name} PROPERTY FOLDER "GSL_tests")
|
2015-09-21 15:04:06 -04:00
|
|
|
endfunction()
|
|
|
|
|
2016-02-24 14:26:28 -05:00
|
|
|
add_gsl_test(span_tests)
|
2016-02-24 14:03:33 -05:00
|
|
|
add_gsl_test(multi_span_tests)
|
2015-11-24 15:49:03 -05:00
|
|
|
add_gsl_test(strided_span_tests)
|
2015-11-04 15:42:27 -05:00
|
|
|
add_gsl_test(string_span_tests)
|
2015-09-21 15:04:06 -04:00
|
|
|
add_gsl_test(at_tests)
|
|
|
|
add_gsl_test(bounds_tests)
|
|
|
|
add_gsl_test(notnull_tests)
|
|
|
|
add_gsl_test(assertion_tests)
|
|
|
|
add_gsl_test(utils_tests)
|
|
|
|
add_gsl_test(owner_tests)
|
2016-10-17 15:42:58 -04:00
|
|
|
add_gsl_test(byte_tests)
|
2016-11-17 13:45:06 -05:00
|
|
|
add_gsl_test(algorithm_tests)
|
2017-04-04 12:01:52 -04:00
|
|
|
add_gsl_test(thread_tests)
|