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

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

Issue 1311393007: Disabling smoothness.tough_canvas_cases - failing on mako-sharded-official-perf-clankium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 measurements import smoothness 8 from measurements import smoothness
9 import page_sets 9 import page_sets
10 import page_sets.key_silk_cases 10 import page_sets.key_silk_cases
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 Measures frame rate and a variety of other statistics. """ 43 Measures frame rate and a variety of other statistics. """
44 test = smoothness.Smoothness 44 test = smoothness.Smoothness
45 page_set = page_sets.ToughPathRenderingCasesPageSet 45 page_set = page_sets.ToughPathRenderingCasesPageSet
46 46
47 @classmethod 47 @classmethod
48 def Name(cls): 48 def Name(cls):
49 return 'smoothness.tough_path_rendering_cases' 49 return 'smoothness.tough_path_rendering_cases'
50 50
51 51
52 @benchmark.Disabled('android') # crbug.com/526901
52 class SmoothnessToughCanvasCases(perf_benchmark.PerfBenchmark): 53 class SmoothnessToughCanvasCases(perf_benchmark.PerfBenchmark):
53 """Measures frame rate and a variety of other statistics. 54 """Measures frame rate and a variety of other statistics.
54 55
55 Uses a selection of pages making use of the 2D Canvas API. 56 Uses a selection of pages making use of the 2D Canvas API.
56 """ 57 """
57 test = smoothness.Smoothness 58 test = smoothness.Smoothness
58 page_set = page_sets.ToughCanvasCasesPageSet 59 page_set = page_sets.ToughCanvasCasesPageSet
59 60
60 @classmethod 61 @classmethod
61 def Name(cls): 62 def Name(cls):
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 427
427 @benchmark.Disabled('reference') # http://crbug.com/496684 428 @benchmark.Disabled('reference') # http://crbug.com/496684
428 class SmoothnessToughWebGLAdCases(perf_benchmark.PerfBenchmark): 429 class SmoothnessToughWebGLAdCases(perf_benchmark.PerfBenchmark):
429 """Measures rendering statistics while scrolling advertisements.""" 430 """Measures rendering statistics while scrolling advertisements."""
430 test = smoothness.Smoothness 431 test = smoothness.Smoothness
431 page_set = page_sets.ToughWebglAdCasesPageSet 432 page_set = page_sets.ToughWebglAdCasesPageSet
432 433
433 @classmethod 434 @classmethod
434 def Name(cls): 435 def Name(cls):
435 return 'smoothness.tough_webgl_ad_cases' 436 return 'smoothness.tough_webgl_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