mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 21:27:10 -04:00
report_spyglass_lint.py: reject any increase in reported messages (#2816)
this will avoid any regression in linting
This commit is contained in:
parent
193756ad16
commit
9cd5c7711f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ def compare_summaries(baseline_info, new_info):
|
|||
message = (
|
||||
f"Count changed from {baseline_dict[key][0]} to {new_dict[key][0]}"
|
||||
)
|
||||
if key[0] == "ERROR" and new_dict[key][0] > baseline_dict[key][0]:
|
||||
if new_dict[key][0] > baseline_dict[key][0]:
|
||||
comparison_results.append((*key, *value, "FAIL", message))
|
||||
else:
|
||||
comparison_results.append((*key, *value, "PASS", message))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue