[Git][ghc/ghc][wip/andreask/testsuite_expected_window] Properly describe acceptance window for stat tests.
Andreas Klebinger (@AndreasK)
gitlab at gitlab.haskell.org
Fri Mar 7 15:45:37 UTC 2025
Andreas Klebinger pushed to branch wip/andreask/testsuite_expected_window at Glasgow Haskell Compiler / GHC
Commits:
33b3cb36 by Andreas Klebinger at 2025-03-07T16:21:48+01:00
Properly describe acceptance window for stat tests.
The relative metric is already in %, so no need to multiply by 100.
- - - - -
1 changed file:
- testsuite/driver/perf_notes.py
Changes:
=====================================
testsuite/driver/perf_notes.py
=====================================
@@ -162,7 +162,7 @@ class RelativeMetricAcceptanceWindow(MetricAcceptanceWindow):
return (lowerBound, upperBound)
def describe(self) -> str:
- return '+/- %1.1f%%' % (100*self.__tol)
+ return '+/- %1.1f%%' % (self.__tol)
def parse_perf_stat(stat_str: str) -> PerfStat:
field_vals = stat_str.strip('\t').split('\t')
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/33b3cb36de411c3cd25562e50751a9e587bf7ce8
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/33b3cb36de411c3cd25562e50751a9e587bf7ce8
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250307/2cdbb234/attachment-0001.html>
More information about the ghc-commits
mailing list