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

[test] add backend test matrix support #634

Merged
merged 1 commit into from
Dec 27, 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
124 changes: 43 additions & 81 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,85 +36,47 @@ OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org> ]]

foreach(
TEST
"kalman_constructor_default_float_1x1x1.cpp"
"kalman_constructor_default.cpp"
"kalman_f.cpp"
"kalman_format_arguments.cpp"
"kalman_format_float_1x1x1.cpp"
"kalman_format.cpp"
"kalman_println_1x1x0.cpp"
"printer_1x1x0.cpp")
get_filename_component(NAME ${TEST} NAME_WE)
add_executable(kalman_test_${NAME}_driver ${TEST})
target_link_libraries(kalman_test_${NAME}_driver PRIVATE kalman kalman_main
kalman_options)
separate_arguments(TEST_COMMAND UNIX_COMMAND $ENV{COMMAND})
add_test(NAME kalman_test_${NAME}
COMMAND ${TEST_COMMAND} $<TARGET_FILE:kalman_test_${NAME}_driver>)
endforeach()
include(test.cmake)

foreach(BACKEND IN ITEMS "eigen" "naive")
foreach(
TEST
"linalg_addition.cpp"
"linalg_assign.cpp"
"linalg_constructor_1x1_array.cpp"
"linalg_constructor_1x1.cpp"
"linalg_constructor_1xn_array.cpp"
"linalg_constructor_1xn.cpp"
"linalg_constructor_initializer_lists.cpp"
"linalg_constructor_nx1_array.cpp"
"linalg_constructor_nx1.cpp"
"linalg_copy.cpp"
"linalg_identity_default.cpp"
"linalg_identity.cpp"
"linalg_multiplication_arithmetic.cpp"
"linalg_multiplication_rxc.cpp"
"linalg_multiplication_sxc.cpp"
"linalg_operator_bracket.cpp"
"linalg_operator_equality.cpp"
"linalg_zero_default.cpp"
"linalg_zero.cpp")
get_filename_component(NAME ${TEST} NAME_WE)
add_executable(kalman_test_${BACKEND}_${NAME}_driver ${TEST})
target_link_libraries(
kalman_test_${BACKEND}_${NAME}_driver
PRIVATE kalman kalman_main kalman_linalg_${BACKEND} kalman_options)
separate_arguments(TEST_COMMAND UNIX_COMMAND $ENV{COMMAND})
add_test(NAME kalman_test_${BACKEND}_${NAME}
COMMAND ${TEST_COMMAND}
$<TARGET_FILE:kalman_test_${BACKEND}_${NAME}_driver>)
endforeach()
endforeach()

foreach(BACKEND IN ITEMS "eigen")
foreach(
TEST
"kalman_assign_move_5x4x3.cpp"
"kalman_constructor_default_1x1x3.cpp"
"kalman_constructor_default_1x4x1.cpp"
"kalman_constructor_default_1x4x3.cpp"
"kalman_constructor_default_5x1x1.cpp"
"kalman_constructor_default_5x1x3.cpp"
"kalman_constructor_default_5x4x0.cpp"
"kalman_constructor_default_5x4x1.cpp"
"kalman_constructor_default_5x4x3.cpp"
"kalman_constructor_move_5x4x3.cpp"
"kalman_f_5x4x3.cpp"
"kalman_h_5x4x3.cpp"
"kalman_format_1x4x3.cpp"
"kalman_format_5x4x3.cpp"
"printer_2x3x4.cpp")
get_filename_component(NAME ${TEST} NAME_WE)
add_executable(kalman_test_${BACKEND}_${NAME}_driver ${TEST})
target_link_libraries(
kalman_test_${BACKEND}_${NAME}_driver
PRIVATE kalman kalman_main kalman_linalg_${BACKEND} kalman_options)
separate_arguments(TEST_COMMAND UNIX_COMMAND $ENV{COMMAND})
add_test(NAME kalman_test_${BACKEND}_${NAME}
COMMAND ${TEST_COMMAND}
$<TARGET_FILE:kalman_test_${BACKEND}_${NAME}_driver>)
endforeach()
endforeach()
test(NAME "kalman_assign_move_5x4x3" BACKENDS "eigen")
test(NAME "kalman_constructor_default_1x1x3" BACKENDS "eigen")
test(NAME "kalman_constructor_default_1x4x1" BACKENDS "eigen")
test(NAME "kalman_constructor_default_1x4x3" BACKENDS "eigen")
test(NAME "kalman_constructor_default_5x1x1" BACKENDS "eigen")
test(NAME "kalman_constructor_default_5x1x3" BACKENDS "eigen")
test(NAME "kalman_constructor_default_5x4x0" BACKENDS "eigen")
test(NAME "kalman_constructor_default_5x4x1" BACKENDS "eigen")
test(NAME "kalman_constructor_default_5x4x3" BACKENDS "eigen")
test(NAME "kalman_constructor_default_float_1x1x1")
test(NAME "kalman_constructor_default")
test(NAME "kalman_constructor_move_5x4x3" BACKENDS "eigen")
test(NAME "kalman_f_5x4x3" BACKENDS "eigen")
test(NAME "kalman_f")
test(NAME "kalman_format_1x4x3" BACKENDS "eigen")
test(NAME "kalman_format_5x4x3" BACKENDS "eigen")
test(NAME "kalman_format_arguments")
test(NAME "kalman_format_float_1x1x1")
test(NAME "kalman_format")
test(NAME "kalman_h_5x4x3" BACKENDS "eigen")
test(NAME "kalman_println_1x1x0")
test(NAME "linalg_addition" BACKENDS "eigen" "naive")
test(NAME "linalg_assign" BACKENDS "eigen" "naive")
test(NAME "linalg_constructor_1x1_array" BACKENDS "eigen" "naive")
test(NAME "linalg_constructor_1x1" BACKENDS "eigen" "naive")
test(NAME "linalg_constructor_1xn_array" BACKENDS "eigen" "naive")
test(NAME "linalg_constructor_1xn" BACKENDS "eigen" "naive")
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")
69 changes: 69 additions & 0 deletions test/test.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#[[ __ _ __ __ _ _
| |/ / /\ | | | \/ | /\ | \ | |
| ' / / \ | | | \ / | / \ | \| |
| < / /\ \ | | | |\/| | / /\ \ | . ` |
| . \ / ____ \| |____| | | |/ ____ \| |\ |
|_|\_\/_/ \_\______|_| |_/_/ \_\_| \_|

Kalman Filter
Version 0.4.0
https://github.com/FrancoisCarouge/Kalman

SPDX-License-Identifier: Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org> ]]

# Add a given test NAME The name of the test file without extension. BACKENDS
# Optional list of backend to use against the test.
function(test)
set(oneValueArgs NAME)
set(multiValueArgs BACKENDS)
cmake_parse_arguments(PARSE_ARGV 0 TEST "" "${oneValueArgs}"
"${multiValueArgs}")

if(NOT TEST_BACKENDS)
add_executable(kalman_test_${TEST_NAME}_driver "${TEST_NAME}.cpp")
target_link_libraries(kalman_test_${TEST_NAME}_driver
PRIVATE kalman kalman_main kalman_options)
separate_arguments(TEST_COMMAND UNIX_COMMAND $ENV{COMMAND})
add_test(NAME kalman_test_${TEST_NAME}
COMMAND ${TEST_COMMAND}
$<TARGET_FILE:kalman_test_${TEST_NAME}_driver>)
else()
foreach(BACKEND IN ITEMS ${TEST_BACKENDS})
add_executable(kalman_test_${BACKEND}_${TEST_NAME}_driver
"${TEST_NAME}.cpp")
target_link_libraries(
kalman_test_${BACKEND}_${TEST_NAME}_driver
PRIVATE kalman kalman_main kalman_linalg_${BACKEND} kalman_options)
separate_arguments(TEST_COMMAND UNIX_COMMAND $ENV{COMMAND})
add_test(
NAME kalman_test_${BACKEND}_${TEST_NAME}
COMMAND ${TEST_COMMAND}
$<TARGET_FILE:kalman_test_${BACKEND}_${TEST_NAME}_driver>)
endforeach()
endif()
endfunction(test)