Skip to content
Snippets Groups Projects
Commit a7053a6c authored by sheaf's avatar sheaf Committed by Marge Bot
Browse files

Testsuite driver: don't crash on empty metrics

The testsuite driver crashed when trying to display minimum/maximum
performance changes when there are no metrics (i.e. there is
no baseline available). This patch fixes that.
parent b57b5b92
Branches master
No related tags found
No related merge requests found
Pipeline #51101 failed
......@@ -425,13 +425,17 @@ def tabulate_metrics(metrics: List[PerfMetric]) -> None:
for x in metrics
if x.baseline is not None
]
minimum = 0.0
maximum = 0.0
if len(changes) > 0:
minimum = 100 * (min(changes) - 1)
maximum = 100 * (max(changes) - 1)
dataRows += [
row(("", "", "", "", "", "", "", "")),
row(("geo. mean", "", "", "", "", "", "{:+4.1f}%".format(100*(geometric_mean(changes)-1)), "")),
row(("minimum ", "", "", "", "", "", "{:+4.1f}%".format(100*(min(changes)-1)), "")),
row(("maximum ", "", "", "", "", "", "{:+4.1f}%".format(100*(max(changes)-1)), "")),
row(("minimum ", "", "", "", "", "", "{:+4.1f}%".format(minimum), "")),
row(("maximum ", "", "", "", "", "", "{:+4.1f}%".format(maximum), "")),
]
print_table(headerRows, dataRows, 1)
print("")
if hasBaseline:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment