summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2016-01-28 18:23:42 +0200
committerMartin Peres <martin.peres@linux.intel.com>2016-01-28 18:23:42 +0200
commit491b97dead53dfcac5dffe2ac701d86e4b5eb135 (patch)
treeb405778dfab1f73e6cc5ba2bcd797e3cade95a36
parentd4b2e3218810f806d84bf3d8e5a72332bab72209 (diff)
report: fix the reported commit range of perf regression
-rw-r--r--utils/ezbench.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ezbench.py b/utils/ezbench.py
index 3443d5c..c81b7a9 100644
--- a/utils/ezbench.py
+++ b/utils/ezbench.py
@@ -1060,6 +1060,7 @@ class Report:
# If we are not $perf_diff_confidence sure that this is the
# same normal distribution, say that the performance changed
if p < perf_diff_confidence and diff >= smallest_perf_change:
+ commit_range = EventCommitRange(bench_prev[bench].commit, commit)
self.events.append(EventPerfChange(result.benchmark,
commit_range,
old_perf, perf, 1 - p))