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 # TODO: Benchmark is failing; see crbug.com/452257. Comment out instead of | 5 from page_sets import inbox |
6 # disabling because the failure happens before the Disabled check. | 6 from telemetry import benchmark |
7 #from page_sets import inbox | 7 from telemetry.web_perf import timeline_based_measurement |
8 #from telemetry import benchmark | 8 |
9 #from telemetry.web_perf import timeline_based_measurement | 9 @benchmark.Disabled('android') |
10 # | 10 class Inbox(benchmark.Benchmark): |
11 #@benchmark.Disabled('android') | 11 """Runs the timeline based measurement against inbox pageset.""" |
12 #class Inbox(benchmark.Benchmark): | 12 test = timeline_based_measurement.TimelineBasedMeasurement |
13 # """Runs the timeline based measurement against inbox pageset.""" | 13 |
14 # test = timeline_based_measurement.TimelineBasedMeasurement | 14 def CreatePageSet(self, options): |
15 # | 15 return inbox.InboxPageSet() |
16 # def CreatePageSet(self, options): | |
17 # return inbox.InboxPageSet() | |
OLD | NEW |