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

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

Issue 1245483002: Revert of Disable smoothness.top_25_smooth on win/mac/linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | no next file » | 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 benchmarks import silk_flags 7 from benchmarks import silk_flags
8 from benchmarks import webgl_expectations 8 from benchmarks import webgl_expectations
9 from measurements import smoothness 9 from measurements import smoothness
10 import page_sets 10 import page_sets
11 import page_sets.key_silk_cases 11 import page_sets.key_silk_cases
12 from telemetry import benchmark 12 from telemetry import benchmark
13 13
14 14
15 @benchmark.Disabled('win', 'mac', 'linux') # crbug.com/510818
16 class SmoothnessTop25(perf_benchmark.PerfBenchmark): 15 class SmoothnessTop25(perf_benchmark.PerfBenchmark):
17 """Measures rendering statistics while scrolling down the top 25 web pages. 16 """Measures rendering statistics while scrolling down the top 25 web pages.
18 17
19 http://www.chromium.org/developers/design-documents/rendering-benchmarks 18 http://www.chromium.org/developers/design-documents/rendering-benchmarks
20 """ 19 """
21 test = smoothness.Smoothness 20 test = smoothness.Smoothness
22 page_set = page_sets.Top25SmoothPageSet 21 page_set = page_sets.Top25SmoothPageSet
23 22
24 @classmethod 23 @classmethod
25 def Name(cls): 24 def Name(cls):
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 399
401 @benchmark.Disabled('reference') # http://crbug.com/496684 400 @benchmark.Disabled('reference') # http://crbug.com/496684
402 class SmoothnessToughAdCases(perf_benchmark.PerfBenchmark): 401 class SmoothnessToughAdCases(perf_benchmark.PerfBenchmark):
403 """Measures rendering statistics while displaying advertisements.""" 402 """Measures rendering statistics while displaying advertisements."""
404 test = smoothness.Smoothness 403 test = smoothness.Smoothness
405 page_set = page_sets.ToughAdCasesPageSet 404 page_set = page_sets.ToughAdCasesPageSet
406 405
407 @classmethod 406 @classmethod
408 def Name(cls): 407 def Name(cls):
409 return 'smoothness.tough_ad_cases' 408 return 'smoothness.tough_ad_cases'
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698