diff options
author | 2021-03-31 22:09:00 +0000 | |
---|---|---|
committer | 2021-03-31 22:09:00 +0000 | |
commit | ae95b74af96dd88e1efc5a521cbe779f48dbbb4d (patch) | |
tree | a1b1e6c478d518bf3991e6d7bba77f507b0a03ab /test | |
parent | 5bbc9cea93ef29cee2b8ffb2084d4ebca32600ba (diff) |
Add CMake infrastructure for smoke testing
Necessary CMake changes to implement pre-merge smoke tests
running via CI.
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f6390e8b3..56664e783 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -460,3 +460,7 @@ cmake_dependent_option(EIGEN_TEST_BUILD_DOCUMENTATION "Test building the doxygen if(EIGEN_TEST_BUILD_DOCUMENTATION) add_dependencies(buildtests doc) endif() + +# Register all smoke tests +include("EigenSmokeTestList") +ei_add_smoke_tests("${ei_smoke_test_list}") |