refactor: extract results reference comparison

This commit is contained in:
NINI
2026-05-05 01:38:04 +09:00
parent 339bf1cbb9
commit 421ad5a707
9 changed files with 469 additions and 257 deletions
+7
View File
@@ -28,21 +28,28 @@ add_executable(fesa_io_module_tests tests/test_io_module_includes.cpp)
target_link_libraries(fesa_io_module_tests PRIVATE fesa_core)
target_compile_definitions(fesa_io_module_tests PRIVATE FESA_SOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}")
add_executable(fesa_results_module_tests tests/test_results_module_includes.cpp)
target_link_libraries(fesa_results_module_tests PRIVATE fesa_core)
target_compile_definitions(fesa_results_module_tests PRIVATE FESA_SOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}")
if(MSVC)
target_compile_options(fesa_core PRIVATE /W4 /permissive-)
target_compile_options(fesa_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_core_module_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_math_module_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_io_module_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_results_module_tests PRIVATE /W4 /permissive-)
else()
target_compile_options(fesa_core PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_core_module_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_math_module_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_io_module_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_results_module_tests PRIVATE -Wall -Wextra -Wpedantic)
endif()
add_test(NAME fesa_tests COMMAND fesa_tests)
add_test(NAME fesa_core_module_tests COMMAND fesa_core_module_tests)
add_test(NAME fesa_math_module_tests COMMAND fesa_math_module_tests)
add_test(NAME fesa_io_module_tests COMMAND fesa_io_module_tests)
add_test(NAME fesa_results_module_tests COMMAND fesa_results_module_tests)