From dd36908ba47466dcf725101c82e40d71ce454129 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Sat, 25 Sep 2021 21:45:00 +1000 Subject: [PATCH] autotest: include SBP file in those that contain log messages --- Tools/autotest/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index 0ace918533..3305596749 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -1830,6 +1830,8 @@ class AutoTest(ABC): for f in files: if f == 'LogStructure.h': ret.append(os.path.join(root, f)) + if f == 'LogStructure_SBP.h': + ret.append(os.path.join(root, f)) return ret def all_log_format_ids(self):