[lint] Minor update of ERROR patterns in parser script I came across a new error pattern (due to waiver regexp that cannot be compiler). These messages have a different signature, hence the filter update. Signed-off-by: Michael Schaffner <msf@google.com>
diff --git a/hw/lint/tools/ascentlint/parse-lint-report.py b/hw/lint/tools/ascentlint/parse-lint-report.py index 1bdbfed..b85f55c 100755 --- a/hw/lint/tools/ascentlint/parse-lint-report.py +++ b/hw/lint/tools/ascentlint/parse-lint-report.py
@@ -44,6 +44,7 @@ full_file = f.read() err_warn_patterns = [("errors", r"^FlexNet Licensing error.*"), ("errors", r"^Error: .*"), + ("errors", r"^ERROR.*"), ("errors", r"^ ERR .*"), ("warnings", r"^Warning: .*"), ("warnings", r"^ WARN .*")]