Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: tools/perf/benchmarks/page_cycler.py

Issue 1824623002: Revert of [Telemetry] Disable some tests on Nexus 5X reference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/blink_style.py ('k') | tools/perf/benchmarks/power.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 'mandoline-release', 'mandoline-debug') 220 'mandoline-release', 'mandoline-debug')
221 class PageCyclerTypical25(_PageCycler): 221 class PageCyclerTypical25(_PageCycler):
222 """Page load time benchmark for a 25 typical web pages. 222 """Page load time benchmark for a 25 typical web pages.
223 223
224 Designed to represent typical, not highly optimized or highly popular web 224 Designed to represent typical, not highly optimized or highly popular web
225 sites. Runs against pages recorded in June, 2014. 225 sites. Runs against pages recorded in June, 2014.
226 """ 226 """
227 options = {'pageset_repeat': 3} 227 options = {'pageset_repeat': 3}
228 228
229 @classmethod 229 @classmethod
230 def ShouldDisable(cls, possible_browser): # http://crbug.com/593152
231 return (possible_browser.browser_type == 'reference' and
232 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
233
234 @classmethod
235 def Name(cls): 230 def Name(cls):
236 return 'page_cycler.typical_25' 231 return 'page_cycler.typical_25'
237 232
238 def CreateStorySet(self, options): 233 def CreateStorySet(self, options):
239 return page_sets.Typical25PageSet(run_no_page_interactions=True) 234 return page_sets.Typical25PageSet(run_no_page_interactions=True)
240 235
241 236
242 @benchmark.Disabled('reference', 'android') 237 @benchmark.Disabled('reference', 'android')
243 class PageCyclerBasicOopifIsolated(_PageCycler): 238 class PageCyclerBasicOopifIsolated(_PageCycler):
244 """ A benchmark measuring performance of out-of-process iframes. """ 239 """ A benchmark measuring performance of out-of-process iframes. """
(...skipping 18 matching lines...) Expand all
263 return 'page_cycler.basic_oopif' 258 return 'page_cycler.basic_oopif'
264 259
265 260
266 @benchmark.Disabled('all') # crbug.com/443730 261 @benchmark.Disabled('all') # crbug.com/443730
267 class PageCyclerBigJs(_PageCycler): 262 class PageCyclerBigJs(_PageCycler):
268 page_set = page_sets.BigJsPageSet 263 page_set = page_sets.BigJsPageSet
269 264
270 @classmethod 265 @classmethod
271 def Name(cls): 266 def Name(cls):
272 return 'page_cycler.big_js' 267 return 'page_cycler.big_js'
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/blink_style.py ('k') | tools/perf/benchmarks/power.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698