| # SPDX-FileCopyrightText: The Eigen Authors |
| # SPDX-License-Identifier: MPL-2.0 |
| |
| include(EigenTesting) |
| include(CheckCXXSourceCompiles) |
| |
| |
| # configure the "site" and "buildname" |
| ei_set_sitename() |
| |
| # retrieve and store the build string |
| ei_set_build_string() |
| |
| add_custom_target(buildtests) |
| |
| # buildsmoketests is created up-front so that ei_add_test_internal — which |
| # runs from inside test/ and unsupported/test/ — can attach the smoketest |
| # label and the build dependency in the same directory scope where add_test() |
| # was called. CMake's set_property(TEST ...) and add_dependencies require |
| # this scope match, so a single post-hoc registration from the top level |
| # would silently fail for unsupported entries. |
| add_custom_target(buildsmoketests) |
| |
| # Load the smoke-test list once. ei_smoke_test_list is then visible to both |
| # test/ and unsupported/test/ as a parent-scope variable, and ei_add_test_internal |
| # checks it on every test it registers. |
| include(EigenSmokeTestList) |
| |
| if (NOT EIGEN_CTEST_ARGS) |
| # By default, run tests in parallel on all available cores. |
| set(EIGEN_CTEST_ARGS "" CACHE STRING "-j0") |
| endif() |
| add_custom_target(check COMMAND "ctest" ${EIGEN_CTEST_ARGS}) |
| |
| add_dependencies(check buildtests) |
| |
| # Convenience target for only building GPU tests. |
| add_custom_target(buildtests_gpu) |
| add_custom_target(check_gpu COMMAND "ctest" ${EIGEN_CTEST_ARGS} |
| "--output-on-failure" |
| "--no-compress-output" |
| "--build-no-clean" |
| "-T" "test" |
| "-L" "gpu") |
| add_dependencies(check_gpu buildtests_gpu) |
| |
| # check whether /bin/bash exists (disabled as not used anymore) |
| # find_file(EIGEN_BIN_BASH_EXISTS "/bin/bash" PATHS "/" NO_DEFAULT_PATH) |
| |
| # This call activates testing and generates the DartConfiguration.tcl |
| 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") |
| |
| # Overwrite default DartConfiguration.tcl such that ctest can build our unit tests. |
| # Recall that our unit tests are not in the "all" target, so we have to explicitly ask ctest to build our custom 'buildtests' target. |
| # At this stage, we can also add custom flags to the build tool through the user defined EIGEN_TEST_BUILD_FLAGS variable. |
| file(READ "${CMAKE_CURRENT_BINARY_DIR}/DartConfiguration.tcl" EIGEN_DART_CONFIG_FILE) |
| # try to grab the default flags |
| 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) |
| |
| # some documentation of this function would be nice |
| ei_init_testing() |
| |
| # configure Eigen related testing options |
| option(EIGEN_NO_ASSERTION_CHECKING "Disable checking of assertions using exceptions" OFF) |
| option(EIGEN_DEBUG_ASSERTS "Enable advanced debugging 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() |
| |
| elseif(MSVC) |
| set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_CRT_SECURE_NO_WARNINGS /D_SCL_SECURE_NO_WARNINGS") |
| endif() |
| |