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

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

Issue 190543007: [Telemetry] Disable smoothness.tough_animation_cases on android. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 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 | « 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 class SmoothnessTop25(test.Test): 10 class SmoothnessTop25(test.Test):
(...skipping 11 matching lines...) Expand all
22 22
23 23
24 class SmoothnessKeyMobileSites(test.Test): 24 class SmoothnessKeyMobileSites(test.Test):
25 """Measures rendering statistics while scrolling down the key mobile sites. 25 """Measures rendering statistics while scrolling down the key mobile sites.
26 26
27 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 27 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
28 test = smoothness.Smoothness 28 test = smoothness.Smoothness
29 page_set = 'page_sets/key_mobile_sites.json' 29 page_set = 'page_sets/key_mobile_sites.json'
30 30
31 31
32 @test.Disabled('android') # crbug.com/350692
32 class SmoothnessToughAnimationCases(test.Test): 33 class SmoothnessToughAnimationCases(test.Test):
33 test = smoothness.Smoothness 34 test = smoothness.Smoothness
34 page_set = 'page_sets/tough_animation_cases.json' 35 page_set = 'page_sets/tough_animation_cases.json'
35 36
36 37
37 class SmoothnessKeySilkCases(test.Test): 38 class SmoothnessKeySilkCases(test.Test):
38 """Measures rendering statistics for the key silk cases without GPU 39 """Measures rendering statistics for the key silk cases without GPU
39 rasterization 40 rasterization
40 """ 41 """
41 test = smoothness.Smoothness 42 test = smoothness.Smoothness
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 silk_flags.CustomizeBrowserOptionsForFastPath(options) 108 silk_flags.CustomizeBrowserOptionsForFastPath(options)
108 109
109 110
110 @test.Enabled('android') 111 @test.Enabled('android')
111 class SmoothnessToughPinchZoomCases(test.Test): 112 class SmoothnessToughPinchZoomCases(test.Test):
112 """Measures rendering statistics for pinch-zooming into the tough pinch zoom 113 """Measures rendering statistics for pinch-zooming into the tough pinch zoom
113 cases 114 cases
114 """ 115 """
115 test = smoothness.Smoothness 116 test = smoothness.Smoothness
116 page_set = 'page_sets/tough_pinch_zoom_cases.json' 117 page_set = 'page_sets/tough_pinch_zoom_cases.json'
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