autotest: logger_metadata: exempt iofirmware.cpp from checking

uses a macro to generate a value, which makes it problematic from a matching sense
This commit is contained in:
Peter Barker 2024-10-20 11:19:36 +11:00 committed by Andrew Tridgell
parent 9e4bdf31b8
commit 6c643b8d66
1 changed files with 3 additions and 0 deletions

View File

@ -223,6 +223,9 @@ class EnumDocco(object):
continue continue
if filepath.endswith("libraries/AP_HAL/utility/getopt_cpp.h"): if filepath.endswith("libraries/AP_HAL/utility/getopt_cpp.h"):
continue continue
# Failed to match ( IOEVENT_PWM = EVENT_MASK(1),)
if filepath.endswith("libraries/AP_IOMCU/iofirmware/iofirmware.cpp"):
continue
self.files.append(filepath) self.files.append(filepath)
if len(_next): if len(_next):
self.search_for_files(_next) self.search_for_files(_next)