mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1246174 - fix tp5o responsiveness calculation for reporting to perfherder. r=parkouss
MozReview-Commit-ID: 3MP9ugObja4
This commit is contained in:
parent
6b185089c6
commit
de19c25978
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user