Revert "[lint] Rename tool warnings to flow warnings and reduce their severity"
This reverts commit 56a7558970bf5685f860e6d133cd35325c4e747e.
Signed-off-by: Michael Schaffner <msf@opentitan.org>
diff --git a/util/dvsim/LintCfg.py b/util/dvsim/LintCfg.py
index c40966d..f1f460c 100644
--- a/util/dvsim/LintCfg.py
+++ b/util/dvsim/LintCfg.py
@@ -54,7 +54,7 @@
results_str += "\n"
header = [
- "Name", "Flow Warnings", "Flow Errors", "Lint Warnings",
+ "Name", "Tool Warnings", "Tool Errors", "Lint Warnings",
"Lint Errors"
]
colalign = ("center", ) * len(header)
@@ -180,25 +180,22 @@
self.result_summary["lint_errors"] += self.result["lint_errors"]
# Append detailed messages if they exist
- # Indicate whether message leads to failure or not.
- hdr_key_pairs = [("Flow Warnings", "warnings", False),
- ("Flow Errors", "errors", True),
- ("Lint Warnings", "lint_warnings", True),
- ("Lint Errors", "lint_errors", True)]
+ hdr_key_pairs = [("Tool Warnings", "warnings"),
+ ("Tool Errors", "errors"),
+ ("Lint Warnings", "lint_warnings"),
+ ("Lint Errors", "lint_errors")]
# Lint fails if any warning or error message has occurred
self.errors_seen = False
- errors_to_report = False
- for _, key, fail in hdr_key_pairs:
+ for _, key in hdr_key_pairs:
if key in self.result:
if self.result.get(key):
- self.errors_seen = fail
- errors_to_report = True
+ self.errors_seen = True
break
- if errors_to_report:
+ if self.errors_seen:
fail_msgs += "\n### Errors and Warnings for Build Mode `'" + mode.name + "'`\n"
- for hdr, key, _ in hdr_key_pairs:
+ for hdr, key in hdr_key_pairs:
msgs = self.result.get(key)
fail_msgs += print_msg_list("#### " + hdr, msgs, self.max_msg_count)