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

Disable actually failing flaky OMPL test #495

Merged
Merged
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
8 changes: 5 additions & 3 deletions moveit_planners/ompl/ompl_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ if(BUILD_TESTING)
ament_target_dependencies(test_planning_context_manager moveit_core tf2_eigen OMPL Boost Eigen3)
target_link_libraries(test_planning_context_manager ${MOVEIT_LIB_NAME})

ament_add_gtest(test_ompl_constraints test/test_ompl_constraints.cpp)
ament_target_dependencies(test_ompl_constraints moveit_core OMPL Boost Eigen3)
target_link_libraries(test_ompl_constraints ${MOVEIT_LIB_NAME})
# Disabling flaky test
# TODO (vatanaksoytezer): Uncomment once this is fixed
# ament_add_gtest(test_ompl_constraints test/test_ompl_constraints.cpp)
# ament_target_dependencies(test_ompl_constraints moveit_core OMPL Boost Eigen3)
# target_link_libraries(test_ompl_constraints ${MOVEIT_LIB_NAME})

ament_add_gtest(test_constrained_planning_state_space test/test_constrained_planning_state_space.cpp)
ament_target_dependencies(test_constrained_planning_state_space moveit_core OMPL Boost Eigen3)
Expand Down