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

Consolidate RobotState benchmarks in single file #2528

Merged
merged 5 commits into from Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 4 additions & 13 deletions moveit_core/robot_state/CMakeLists.txt
Expand Up @@ -50,15 +50,6 @@ if(BUILD_TESTING)
moveit_robot_state
)

# As an executable, this benchmark is not run as a test by default
ament_add_gtest(test_robot_state_benchmark test/robot_state_benchmark.cpp)
target_link_libraries(test_robot_state_benchmark
moveit_test_utils
moveit_utils
moveit_exceptions
moveit_robot_state
)

ament_add_gtest(test_robot_state_complex test/test_kinematic_complex.cpp)
target_link_libraries(test_robot_state_complex
moveit_test_utils
Expand All @@ -83,12 +74,12 @@ if(BUILD_TESTING)
)

ament_add_google_benchmark(
robot_state_jacobian_benchmark
test/robot_state_jacobian_benchmark.cpp)
ament_target_dependencies(robot_state_jacobian_benchmark
robot_state_benchmark
test/robot_state_benchmark.cpp)
ament_target_dependencies(robot_state_benchmark
kdl_parser
)
target_link_libraries(robot_state_jacobian_benchmark
target_link_libraries(robot_state_benchmark
moveit_robot_model
moveit_test_utils
moveit_robot_state
Expand Down