OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 core import perf_benchmark | 5 from core import perf_benchmark |
6 | 6 |
7 from measurements import page_cycler | 7 from measurements import page_cycler |
8 import page_sets | 8 import page_sets |
9 from telemetry import benchmark | 9 from telemetry import benchmark |
10 | 10 |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 Recorded in July 2013. | 209 Recorded in July 2013. |
210 """ | 210 """ |
211 page_set = page_sets.ToughLayoutCasesPageSet | 211 page_set = page_sets.ToughLayoutCasesPageSet |
212 | 212 |
213 @classmethod | 213 @classmethod |
214 def Name(cls): | 214 def Name(cls): |
215 return 'page_cycler.tough_layout_cases' | 215 return 'page_cycler.tough_layout_cases' |
216 | 216 |
217 | 217 |
218 # crbug.com/273986: This test is flakey on Windows Chrome. | 218 # crbug.com/273986: This test is flakey on Windows Chrome. |
219 @benchmark.Enabled('android', 'chromeos', 'linux', 'ios', 'mac', | 219 @benchmark.Enabled('android', 'chromeos', 'linux', 'ios', 'mac') |
220 'mandoline-release', 'mandoline-debug') | |
221 class PageCyclerTypical25(_PageCycler): | 220 class PageCyclerTypical25(_PageCycler): |
222 """Page load time benchmark for a 25 typical web pages. | 221 """Page load time benchmark for a 25 typical web pages. |
223 | 222 |
224 Designed to represent typical, not highly optimized or highly popular web | 223 Designed to represent typical, not highly optimized or highly popular web |
225 sites. Runs against pages recorded in June, 2014. | 224 sites. Runs against pages recorded in June, 2014. |
226 """ | 225 """ |
227 options = {'pageset_repeat': 3} | 226 options = {'pageset_repeat': 3} |
228 | 227 |
229 @classmethod | 228 @classmethod |
230 def ShouldDisable(cls, possible_browser): # http://crbug.com/593152 | 229 def ShouldDisable(cls, possible_browser): # http://crbug.com/593152 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 return 'page_cycler.basic_oopif' | 262 return 'page_cycler.basic_oopif' |
264 | 263 |
265 | 264 |
266 @benchmark.Disabled('all') # crbug.com/443730 | 265 @benchmark.Disabled('all') # crbug.com/443730 |
267 class PageCyclerBigJs(_PageCycler): | 266 class PageCyclerBigJs(_PageCycler): |
268 page_set = page_sets.BigJsPageSet | 267 page_set = page_sets.BigJsPageSet |
269 | 268 |
270 @classmethod | 269 @classmethod |
271 def Name(cls): | 270 def Name(cls): |
272 return 'page_cycler.big_js' | 271 return 'page_cycler.big_js' |
OLD | NEW |