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

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

Issue 282063007: [Telemetry] Disable tough webgl cases everywhere. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 benchmarks import silk_flags 5 from benchmarks import silk_flags
6 from measurements import smoothness 6 from measurements import smoothness
7 from telemetry import test 7 from telemetry import test
8 8
9 9
10 @test.Disabled # crbug.com/368767 10 @test.Disabled # crbug.com/368767
11 class SmoothnessTop25(test.Test): 11 class SmoothnessTop25(test.Test):
12 """Measures rendering statistics while scrolling down the top 25 web pages. 12 """Measures rendering statistics while scrolling down the top 25 web pages.
13 13
14 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 14 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
15 test = smoothness.Smoothness 15 test = smoothness.Smoothness
16 page_set = 'page_sets/top_25.py' 16 page_set = 'page_sets/top_25.py'
17 17
18 18
19 @test.Disabled('linux', 'mac', 'win') # crbug.com/368767 19 @test.Disabled('linux', 'mac', 'win') # crbug.com/368767
20 class SmoothnessToughCanvasCases(test.Test): 20 class SmoothnessToughCanvasCases(test.Test):
21 test = smoothness.Smoothness 21 test = smoothness.Smoothness
22 page_set = 'page_sets/tough_canvas_cases.py' 22 page_set = 'page_sets/tough_canvas_cases.py'
23 23
24 24
25 @test.Disabled('linux', 'mac', 'win') # crbug.com/373812 25 @test.Disabled # crbug.com/373812
26 class SmoothnessToughWebGLCases(test.Test): 26 class SmoothnessToughWebGLCases(test.Test):
27 test = smoothness.Smoothness 27 test = smoothness.Smoothness
28 page_set = 'page_sets/tough_webgl_cases.py' 28 page_set = 'page_sets/tough_webgl_cases.py'
29 29
30 30
31 class SmoothnessMaps(test.Test): 31 class SmoothnessMaps(test.Test):
32 test = smoothness.Smoothness 32 test = smoothness.Smoothness
33 page_set = 'page_sets/maps.py' 33 page_set = 'page_sets/maps.py'
34 34
35 35
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 """Measures rendering statistics for the Polymer cases with GPU rasterization 163 """Measures rendering statistics for the Polymer cases with GPU rasterization
164 using bleeding edge rendering fast paths. 164 using bleeding edge rendering fast paths.
165 """ 165 """
166 tag = 'fast_path_gpu_rasterization' 166 tag = 'fast_path_gpu_rasterization'
167 test = smoothness.Smoothness 167 test = smoothness.Smoothness
168 page_set = 'page_sets/polymer.py' 168 page_set = 'page_sets/polymer.py'
169 def CustomizeBrowserOptions(self, options): 169 def CustomizeBrowserOptions(self, options):
170 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ 170 super(SmoothnessFastPathGpuRasterizationPolymer, self). \
171 CustomizeBrowserOptions(options) 171 CustomizeBrowserOptions(options)
172 silk_flags.CustomizeBrowserOptionsForFastPath(options) 172 silk_flags.CustomizeBrowserOptionsForFastPath(options)
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