diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index b8ebd0914e..c5aea90824 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -7511,6 +7511,11 @@ class AutoTestCopter(AutoTest): if not lines[0].startswith("TasksV1"): raise NotAchievedException("Expected TasksV1 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]) def tests1a(self): '''return list of all tests'''