mavsdk_tests: disable mag stuck test

The estimator sometimes diverges in vz after landing which makes the
test fail. This needs to be dealt with first before we can enable the
test again.
This commit is contained in:
Julian Oes 2021-02-09 08:50:37 +01:00 committed by Lorenz Meier
parent e592bed7d3
commit 2772022785
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,9 @@ TEST_CASE("Continue on mag lost during mission", "[multicopter][vtol]")
tester.wait_until_disarmed(until_disarmed_timeout);
}
#if 0
// This test is disabled for now because the estimator sometimes diverges on
// right after landing which then prevents auto-disarm.
TEST_CASE("Continue on mag stuck during mission", "[multicopter][vtol]")
{
AutopilotTester tester;
@ -97,6 +100,7 @@ TEST_CASE("Continue on mag stuck during mission", "[multicopter][vtol]")
std::chrono::seconds until_disarmed_timeout = std::chrono::seconds(180);
tester.wait_until_disarmed(until_disarmed_timeout);
}
#endif
TEST_CASE("Continue on baro lost during mission (baro height mode)", "[multicopter][vtol]")
{