From f904f3f16c884f0ebc67ae52491c93e0ef38ac15 Mon Sep 17 00:00:00 2001 From: Mateo de Mayo Date: Mon, 13 Jun 2022 16:56:19 -0300 Subject: [PATCH] a/math: Repurpose test file for testing pose math --- tests/CMakeLists.txt | 4 ++-- tests/{tests_maths.cpp => tests_pose.cpp} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/{tests_maths.cpp => tests_pose.cpp} (100%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index cd2e53a58..f227c2b86 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -22,7 +22,7 @@ set(tests tests_quatexpmap tests_rational tests_worker - tests_maths + tests_pose ) if(XRT_HAVE_D3D11) list(APPEND tests tests_aux_d3d tests_comp_client_d3d11) @@ -47,7 +47,7 @@ target_link_libraries(tests_lowpass_float PRIVATE aux_math) target_link_libraries(tests_lowpass_integer PRIVATE aux_math) target_link_libraries(tests_quatexpmap PRIVATE aux_math) target_link_libraries(tests_rational PRIVATE aux_math) -target_link_libraries(tests_maths PRIVATE aux_math) +target_link_libraries(tests_pose PRIVATE aux_math) if(XRT_HAVE_D3D11) target_link_libraries(tests_aux_d3d PRIVATE aux_d3d) diff --git a/tests/tests_maths.cpp b/tests/tests_pose.cpp similarity index 100% rename from tests/tests_maths.cpp rename to tests/tests_pose.cpp