From 67aecea4c124bbaa0cfc84eae25a0e9f14fd4651 Mon Sep 17 00:00:00 2001 From: Andy Piper Date: Mon, 11 Apr 2022 08:26:32 +0100 Subject: [PATCH] autotest: remove fast_loop tasks test --- Tools/autotest/arducopter.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index 4babcc72b2..a499e4a269 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -8440,15 +8440,11 @@ class AutoTestCopter(AutoTest): self.delay_sim_time(5) content = self.fetch_file_via_ftp("@SYS/tasks.txt") self.progress("Got content (%s)" % str(content)) - if "fast_loop" not in content: - raise NotAchievedException("Did not find fast_loop in content") lines = content.split("\n") if not lines[0].startswith("TasksV2"): raise NotAchievedException("Expected TasksV2 as first line first not (%s)" % lines[0]) - if not lines[1].startswith("fast_loop"): - raise NotAchievedException("Expected fast_loop first, not (%s)" % lines[1]) # last line is empty, so -2 here if not lines[-2].startswith("AP_EFI::update"): raise NotAchievedException("Expected EFI last not (%s)" % lines[-2])