OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from page_sets import inbox | 5 # TODO: Benchmark is failing; see crbug.com/452257. Comment out instead of |
6 from telemetry import benchmark | 6 # disabling because the failure happens before the Disabled check. |
7 from telemetry.web_perf import timeline_based_measurement | 7 #from page_sets import inbox |
8 | 8 #from telemetry import benchmark |
9 @benchmark.Disabled('android') | 9 #from telemetry.web_perf import timeline_based_measurement |
10 class Inbox(benchmark.Benchmark): | 10 # |
11 """Runs the timeline based measurement against inbox pageset.""" | 11 #@benchmark.Disabled('android') |
12 test = timeline_based_measurement.TimelineBasedMeasurement | 12 #class Inbox(benchmark.Benchmark): |
13 | 13 # """Runs the timeline based measurement against inbox pageset.""" |
14 def CreatePageSet(self, options): | 14 # test = timeline_based_measurement.TimelineBasedMeasurement |
15 return inbox.InboxPageSet() | 15 # |
| 16 # def CreatePageSet(self, options): |
| 17 # return inbox.InboxPageSet() |
OLD | NEW |