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

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

Issue 358643002: Revert of [Telemetry] Disable flaky smoothness.top_25 and testRepaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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 | « tools/perf/benchmarks/scheduler.py ('k') | tools/perf/measurements/repaint_unittest.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 telemetry import test 5 from telemetry import test
6 6
7 from benchmarks import silk_flags 7 from benchmarks import silk_flags
8 from measurements import smoothness 8 from measurements import smoothness
9 import page_sets 9 import page_sets
10 10
11 11
12 @test.Disabled # crbug.com/368767
13 class SmoothnessTop25(test.Test): 12 class SmoothnessTop25(test.Test):
14 """Measures rendering statistics while scrolling down the top 25 web pages. 13 """Measures rendering statistics while scrolling down the top 25 web pages.
15 14
16 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 15 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
17 test = smoothness.Smoothness 16 test = smoothness.Smoothness
18 page_set = page_sets.Top25PageSet 17 page_set = page_sets.Top25PageSet
19 18
20 19
21 @test.Disabled('linux', 'mac', 'win') # crbug.com/368767 20 @test.Disabled('linux', 'mac', 'win') # crbug.com/368767
22 class SmoothnessToughCanvasCases(test.Test): 21 class SmoothnessToughCanvasCases(test.Test):
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 """Measures rendering statistics for the Polymer cases with GPU rasterization 160 """Measures rendering statistics for the Polymer cases with GPU rasterization
162 using bleeding edge rendering fast paths. 161 using bleeding edge rendering fast paths.
163 """ 162 """
164 tag = 'fast_path_gpu_rasterization' 163 tag = 'fast_path_gpu_rasterization'
165 test = smoothness.Smoothness 164 test = smoothness.Smoothness
166 page_set = page_sets.PolymerPageSet 165 page_set = page_sets.PolymerPageSet
167 def CustomizeBrowserOptions(self, options): 166 def CustomizeBrowserOptions(self, options):
168 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ 167 super(SmoothnessFastPathGpuRasterizationPolymer, self). \
169 CustomizeBrowserOptions(options) 168 CustomizeBrowserOptions(options)
170 silk_flags.CustomizeBrowserOptionsForFastPath(options) 169 silk_flags.CustomizeBrowserOptionsForFastPath(options)
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/scheduler.py ('k') | tools/perf/measurements/repaint_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698