Bug 1246174 - fix tp5o responsiveness calculation for reporting to perfherder. r=parkouss

MozReview-Commit-ID: 3MP9ugObja4
This commit is contained in:
Joel Maher 2016-02-10 18:32:16 -08:00
parent 6b185089c6
commit de19c25978

View File

@ -516,6 +516,16 @@ class PerfherderOutput(Output):
if 'mainthreadio' in name:
continue
# responsiveness has it's own metric, not the mean
# TODO: consider doing this for all counters
if 'responsiveness' is name:
subtest = {
'name': name,
'value': self.responsiveness_Metric(vals)
}
counter_subtests.append(subtest)
continue
subtest = {
'name': name,
'value': 0.0,