Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Matrix tests #538

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/splines/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ target_link_libraries(bsplines_tests
DDC::DDC
)

add_executable(matrix_tests
add_executable(splines_linear_problem_tests
../main.cpp
matrix.cpp
splines_linear_problem.cpp
)
target_compile_features(matrix_tests PUBLIC cxx_std_17)
target_link_libraries(matrix_tests
target_compile_features(splines_linear_problem_tests PUBLIC cxx_std_17)
target_link_libraries(splines_linear_problem_tests
PUBLIC
GTest::gtest
DDC::DDC
)
gtest_discover_tests(matrix_tests DISCOVERY_MODE PRE_TEST)
gtest_discover_tests(splines_linear_problem_tests DISCOVERY_MODE PRE_TEST)

foreach(DEGREE_X RANGE "${SPLINES_TEST_DEGREE_MIN}" "${SPLINES_TEST_DEGREE_MAX}")
foreach(BSPLINES_TYPE "BSPLINES_TYPE_UNIFORM" "BSPLINES_TYPE_NON_UNIFORM")
Expand Down
Loading