From 3f6b398a0111b6e8bc1d776cb1d222347499eab5 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 24 Nov 2020 14:38:46 +1100 Subject: [PATCH] autotest: include EK2,EK3 and DAL LogStructures in code-defined messages --- Tools/autotest/common.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index d7815666eb..446ff83bbb 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -1571,7 +1571,10 @@ class AutoTest(ABC): # blank line continue if state == state_outside: - if "#define LOG_BASE_STRUCTURES" in line: + if ("#define LOG_BASE_STRUCTURES" in line or + "#define LOG_STRUCTURE_FROM_DAL" in line or + "#define LOG_STRUCTURE_FROM_NAVEKF2" in line or + "#define LOG_STRUCTURE_FROM_NAVEKF3" in line): # self.progress("Moving inside") state = state_inside continue