Skip to content

Commit

Permalink
Increase the timeout for the cppcheck on rclcpp_action. (#2640)
Browse files Browse the repository at this point in the history
The default is 300 seconds, but on Windows this is taking
between 250 and 300 seconds (I'm seeing it timeout sometimes).
Up the timeout to 600 seconds, which should be more than enough.

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored Oct 3, 2024
1 parent 1a0092a commit 50a1e50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rclcpp_action/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,8 @@ if(BUILD_TESTING)
endif()

ament_package()

if(TEST cppcheck)
# must set the property after ament_package()
set_tests_properties(cppcheck PROPERTIES TIMEOUT 600)
endif()

0 comments on commit 50a1e50

Please sign in to comment.