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

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

Issue 2957493002: Attempt to re-enable smoothness.maps on Windows. (Closed)
Patch Set: Created 3 years, 6 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 import multiprocessing 4 import multiprocessing
5 5
6 from core import perf_benchmark 6 from core import perf_benchmark
7 7
8 from benchmarks import silk_flags 8 from benchmarks import silk_flags
9 from measurements import smoothness 9 from measurements import smoothness
10 import page_sets 10 import page_sets
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 @benchmark.Disabled('win-reference') # crbug.com/612810 120 @benchmark.Disabled('win-reference') # crbug.com/612810
121 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) 121 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org'])
122 class SmoothnessToughWebGLCases(_Smoothness): 122 class SmoothnessToughWebGLCases(_Smoothness):
123 page_set = page_sets.ToughWebglCasesPageSet 123 page_set = page_sets.ToughWebglCasesPageSet
124 124
125 @classmethod 125 @classmethod
126 def Name(cls): 126 def Name(cls):
127 return 'smoothness.tough_webgl_cases' 127 return 'smoothness.tough_webgl_cases'
128 128
129 129
130 @benchmark.Disabled('win') # http://crbug.com/692663
131 @benchmark.Disabled('android-webview') # http://crbug.com/653933 130 @benchmark.Disabled('android-webview') # http://crbug.com/653933
132 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org']) 131 @benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org'])
133 class SmoothnessMaps(perf_benchmark.PerfBenchmark): 132 class SmoothnessMaps(perf_benchmark.PerfBenchmark):
134 page_set = page_sets.MapsPageSet 133 page_set = page_sets.MapsPageSet
135 134
136 @classmethod 135 @classmethod
137 def Name(cls): 136 def Name(cls):
138 return 'smoothness.maps' 137 return 'smoothness.maps'
139 138
140 139
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 https://docs.google.com/a/chromium.org/document/d/ 552 https://docs.google.com/a/chromium.org/document/d/
554 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view""" 553 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view"""
555 page_set = page_sets.ToughSchedulingCasesPageSet 554 page_set = page_sets.ToughSchedulingCasesPageSet
556 555
557 @classmethod 556 @classmethod
558 def Name(cls): 557 def Name(cls):
559 # This should be smoothness.tough_scheduling_cases but since the benchmark 558 # This should be smoothness.tough_scheduling_cases but since the benchmark
560 # has been named this way for long time, we keep the name as-is to avoid 559 # has been named this way for long time, we keep the name as-is to avoid
561 # data migration. 560 # data migration.
562 return 'scheduler.tough_scheduling_cases' 561 return 'scheduler.tough_scheduling_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