From c9095c0e3cd27d718b97e6964763c47d99b1842b Mon Sep 17 00:00:00 2001 From: Emily Bourne Date: Tue, 16 Apr 2024 09:13:32 +0000 Subject: [PATCH] Restore two SLL tests disabled by mistake (gauss-legendre & view) Closes #215 See merge request gysela-developpers/gyselalibxx!460 -------------------------------------------- --- vendor/sll/tests/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vendor/sll/tests/CMakeLists.txt b/vendor/sll/tests/CMakeLists.txt index b1f840a0f..1b7b1f099 100644 --- a/vendor/sll/tests/CMakeLists.txt +++ b/vendor/sll/tests/CMakeLists.txt @@ -5,6 +5,17 @@ include(GoogleTest) set(SLL_SPLINES_TEST_DEGREE_MIN 3 CACHE STRING "Minimum degree to test splines.") set(SLL_SPLINES_TEST_DEGREE_MAX 3 CACHE STRING "Maximum degree to test splines.") +add_executable(misc_tests_sll + main.cpp + view.cpp + gauss_legendre_integration.cpp +) +target_compile_features(misc_tests_sll PUBLIC cxx_std_17) +target_link_libraries(misc_tests_sll + PUBLIC + GTest::gtest + sll::SLL +) add_executable(bsplines_tests_sll main.cpp