From 90459c5a02adb69ea8c597d3fb9aab721d8cd437 Mon Sep 17 00:00:00 2001 From: FrancoisCarouge Date: Sat, 18 Jan 2025 10:25:31 -0800 Subject: [PATCH] [test] utility default test --- test/CMakeLists.txt | 4 ++-- ...nalg_identity_default.cpp => utility_identity_default.cpp} | 2 +- test/{linalg_zero_default.cpp => utility_zero_default.cpp} | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename test/{linalg_identity_default.cpp => utility_identity_default.cpp} (98%) rename test/{linalg_zero_default.cpp => utility_zero_default.cpp} (98%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8cc19ded5..6151e7750 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -69,15 +69,15 @@ test(NAME "linalg_constructor_initializer_lists" BACKENDS "eigen" "naive") test(NAME "linalg_constructor_nx1_array" BACKENDS "eigen" "naive") test(NAME "linalg_constructor_nx1" BACKENDS "eigen" "naive") test(NAME "linalg_copy" BACKENDS "eigen" "naive") -test(NAME "linalg_identity_default" BACKENDS "eigen" "naive") test(NAME "linalg_identity" BACKENDS "eigen" "naive") test(NAME "linalg_multiplication_arithmetic" BACKENDS "eigen" "naive") test(NAME "linalg_multiplication_rxc" BACKENDS "eigen" "naive") test(NAME "linalg_multiplication_sxc" BACKENDS "eigen" "naive") test(NAME "linalg_operator_bracket" BACKENDS "eigen" "naive") test(NAME "linalg_operator_equality" BACKENDS "eigen" "naive") -test(NAME "linalg_zero_default" BACKENDS "eigen" "naive") test(NAME "linalg_zero" BACKENDS "eigen" "naive") test(NAME "printer_1x1x0") test(NAME "printer_2x3x4" BACKENDS "eigen") test(NAME "units_kf_1x1x0_building_height") +test(NAME "utility_identity_default" BACKENDS "eigen" "naive") +test(NAME "utility_zero_default" BACKENDS "eigen" "naive") diff --git a/test/linalg_identity_default.cpp b/test/utility_identity_default.cpp similarity index 98% rename from test/linalg_identity_default.cpp rename to test/utility_identity_default.cpp index dc8adf539..4a3002784 100644 --- a/test/linalg_identity_default.cpp +++ b/test/utility_identity_default.cpp @@ -36,7 +36,7 @@ OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to */ -#include "fcarouge/linalg.hpp" +#include "fcarouge/utility.hpp" #include #include diff --git a/test/linalg_zero_default.cpp b/test/utility_zero_default.cpp similarity index 98% rename from test/linalg_zero_default.cpp rename to test/utility_zero_default.cpp index abf8fcfd7..9949a3467 100644 --- a/test/linalg_zero_default.cpp +++ b/test/utility_zero_default.cpp @@ -36,7 +36,7 @@ OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to */ -#include "fcarouge/linalg.hpp" +#include "fcarouge/utility.hpp" #include #include