|
|
include(EigenTesting) |
|
|
include(CheckCXXSourceCompiles) |
|
|
|
|
|
|
|
|
ei_set_sitename() |
|
|
|
|
|
|
|
|
ei_set_build_string() |
|
|
|
|
|
add_custom_target(buildtests) |
|
|
add_custom_target(check COMMAND "ctest") |
|
|
add_dependencies(check buildtests) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include(CTest) |
|
|
|
|
|
set(EIGEN_TEST_BUILD_FLAGS "" CACHE STRING "Options passed to the build command of unit tests") |
|
|
set(EIGEN_DASHBOARD_BUILD_TARGET "buildtests" CACHE STRING "Target to be built in dashboard mode, default is buildtests") |
|
|
set(EIGEN_CTEST_ERROR_EXCEPTION "" CACHE STRING "Regular expression for build error messages to be filtered out") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
file(READ "${CMAKE_CURRENT_BINARY_DIR}/DartConfiguration.tcl" EIGEN_DART_CONFIG_FILE) |
|
|
|
|
|
string(REGEX MATCH "MakeCommand:.*-- (.*)\nDefaultCTestConfigurationType" EIGEN_DUMMY ${EIGEN_DART_CONFIG_FILE}) |
|
|
if(NOT CMAKE_MATCH_1) |
|
|
string(REGEX MATCH "MakeCommand:.*[^c]make (.*)\nDefaultCTestConfigurationType" EIGEN_DUMMY ${EIGEN_DART_CONFIG_FILE}) |
|
|
endif() |
|
|
string(REGEX REPLACE "MakeCommand:.*DefaultCTestConfigurationType" "MakeCommand: ${CMAKE_COMMAND} --build . --target ${EIGEN_DASHBOARD_BUILD_TARGET} --config \"\${CTEST_CONFIGURATION_TYPE}\" -- ${CMAKE_MATCH_1} ${EIGEN_TEST_BUILD_FLAGS}\nDefaultCTestConfigurationType" |
|
|
EIGEN_DART_CONFIG_FILE2 ${EIGEN_DART_CONFIG_FILE}) |
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/DartConfiguration.tcl" ${EIGEN_DART_CONFIG_FILE2}) |
|
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_BINARY_DIR}/CTestCustom.cmake) |
|
|
|
|
|
|
|
|
ei_init_testing() |
|
|
|
|
|
|
|
|
option(EIGEN_NO_ASSERTION_CHECKING "Disable checking of assertions using exceptions" OFF) |
|
|
option(EIGEN_DEBUG_ASSERTS "Enable advanced debuging of assertions" OFF) |
|
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX) |
|
|
option(EIGEN_COVERAGE_TESTING "Enable/disable gcov" OFF) |
|
|
if(EIGEN_COVERAGE_TESTING) |
|
|
set(COVERAGE_FLAGS "-fprofile-arcs -ftest-coverage") |
|
|
set(CTEST_CUSTOM_COVERAGE_EXCLUDE "/test/") |
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COVERAGE_FLAGS}") |
|
|
endif(EIGEN_COVERAGE_TESTING) |
|
|
|
|
|
elseif(MSVC) |
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_CRT_SECURE_NO_WARNINGS /D_SCL_SECURE_NO_WARNINGS") |
|
|
endif(CMAKE_COMPILER_IS_GNUCXX) |
|
|
|
|
|
|
|
|
|