Skip to content

Commit

Permalink
test_vtol_rtl: increase time to disarm to make tailsitter CI pass
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradRudin authored and RomanBapst committed Oct 31, 2023
1 parent e4e2e63 commit 2e85037
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/mavsdk_tests/test_vtol_rtl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ TEST_CASE("RTL direct Home", "[vtol]")
tester.set_rtl_type(0);
tester.arm();
tester.execute_rtl_when_reaching_mission_sequence(2);
tester.wait_until_disarmed(std::chrono::seconds(90));
tester.wait_until_disarmed(std::chrono::seconds(120));
tester.check_home_within(5.0f);
}

Expand All @@ -59,7 +59,7 @@ TEST_CASE("RTL direct Mission Land", "[vtol]")
tester.set_rtl_type(1);
tester.arm();
tester.execute_rtl_when_reaching_mission_sequence(2);
tester.wait_until_disarmed(std::chrono::seconds(90));
tester.wait_until_disarmed(std::chrono::seconds(120));
tester.check_mission_land_within(5.0f);
}

Expand All @@ -74,7 +74,7 @@ TEST_CASE("RTL with Mission Landing", "[vtol]")
tester.arm();
tester.execute_rtl_when_reaching_mission_sequence(2);
tester.check_tracks_mission_raw(35.0f);
tester.wait_until_disarmed(std::chrono::seconds(95));
tester.wait_until_disarmed(std::chrono::seconds(120));
}

TEST_CASE("RTL with Reverse Mission", "[vtol]")
Expand All @@ -89,7 +89,7 @@ TEST_CASE("RTL with Reverse Mission", "[vtol]")
tester.arm();
tester.execute_rtl_when_reaching_mission_sequence(6);
//tester.check_tracks_mission_raw(35.0f);
tester.wait_until_disarmed(std::chrono::seconds(90));
tester.wait_until_disarmed(std::chrono::seconds(120));
}

TEST_CASE("RTL direct home without approaches", "[vtol]")
Expand Down

0 comments on commit 2e85037

Please sign in to comment.