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

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

Issue 2658673002: Disable blink_perf.canvas on Android Perf bots (Closed)
Patch Set: Created 3 years, 10 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 import os 5 import os
6 6
7 from core import path_util 7 from core import path_util
8 from core import perf_benchmark 8 from core import perf_benchmark
9 9
10 from telemetry import benchmark 10 from telemetry import benchmark
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 class BlinkPerfBlinkGC(_BlinkPerfBenchmark): 157 class BlinkPerfBlinkGC(_BlinkPerfBenchmark):
158 tag = 'blink_gc' 158 tag = 'blink_gc'
159 subdir = 'BlinkGC' 159 subdir = 'BlinkGC'
160 160
161 161
162 class BlinkPerfCSS(_BlinkPerfBenchmark): 162 class BlinkPerfCSS(_BlinkPerfBenchmark):
163 tag = 'css' 163 tag = 'css'
164 subdir = 'CSS' 164 subdir = 'CSS'
165 165
166 166
167 @benchmark.Disabled('android-webview', # http://crbug.com/593200 167 @benchmark.Disabled('android', # http://crbug.com/685320
168 'android-webview', # http://crbug.com/593200
168 'reference') # http://crbug.com/576779 169 'reference') # http://crbug.com/576779
169 class BlinkPerfCanvas(_BlinkPerfBenchmark): 170 class BlinkPerfCanvas(_BlinkPerfBenchmark):
170 tag = 'canvas' 171 tag = 'canvas'
171 subdir = 'Canvas' 172 subdir = 'Canvas'
172 173
173 @classmethod 174 @classmethod
174 def ShouldDisable(cls, possible_browser): 175 def ShouldDisable(cls, possible_browser):
175 return cls.IsSvelte(possible_browser) # http://crbug.com/593973. 176 return cls.IsSvelte(possible_browser) # http://crbug.com/593973.
176 177
177 def CreateStorySet(self, options): 178 def CreateStorySet(self, options):
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 257
257 def CreateStorySet(self, options): 258 def CreateStorySet(self, options):
258 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir) 259 path = os.path.join(BLINK_PERF_BASE_DIR, self.subdir)
259 return CreateStorySetFromPath( 260 return CreateStorySetFromPath(
260 path, SKIPPED_FILE, 261 path, SKIPPED_FILE,
261 shared_page_state_class=_SharedPywebsocketPageState) 262 shared_page_state_class=_SharedPywebsocketPageState)
262 263
263 @classmethod 264 @classmethod
264 def ShouldDisable(cls, possible_browser): 265 def ShouldDisable(cls, possible_browser):
265 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 266 return cls.IsSvelte(possible_browser) # http://crbug.com/551950
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