Skip to content

Commit

Permalink
increase wait time for GitHub actions machines
Browse files Browse the repository at this point in the history
Signed-off-by: Ashton Larkin <[email protected]>
  • Loading branch information
adlarkin committed Mar 22, 2022
1 parent 92cb2f1 commit e3c38fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/scene_broadcaster_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -858,11 +858,11 @@ TEST_P(SceneBroadcasterTest,
// made by the test system is received.
received = false;
hasState = false;
server.Run(true, 5, false);
server.Run(true, 10, false);
// (wait for a bit after running the server in case ign-transport is still
// processing messages)
unsigned int sleep = 0u;
unsigned int maxSleep = 30u;
unsigned int maxSleep = 50u;
// cppcheck-suppress unmatchedSuppression
// cppcheck-suppress knownConditionTrueFalse
while (!received && sleep++ < maxSleep)
Expand Down

0 comments on commit e3c38fe

Please sign in to comment.