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

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

Issue 1489013002: Disable blink_perf.bindings benchmark on Android Svelte (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 test = _BlinkPerfMeasurement 147 test = _BlinkPerfMeasurement
148 148
149 @classmethod 149 @classmethod
150 def Name(cls): 150 def Name(cls):
151 return 'blink_perf.bindings' 151 return 'blink_perf.bindings'
152 152
153 def CreateStorySet(self, options): 153 def CreateStorySet(self, options):
154 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings') 154 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings')
155 return CreateStorySetFromPath(path, SKIPPED_FILE) 155 return CreateStorySetFromPath(path, SKIPPED_FILE)
156 156
157 @classmethod
158 def ShouldDisable(cls, possible_browser):
159 return cls.IsSvelte(possible_browser) # http://crbug.com/563979
160
157 161
158 @benchmark.Enabled('content-shell') 162 @benchmark.Enabled('content-shell')
159 class BlinkPerfBlinkGC(perf_benchmark.PerfBenchmark): 163 class BlinkPerfBlinkGC(perf_benchmark.PerfBenchmark):
160 tag = 'blink_gc' 164 tag = 'blink_gc'
161 test = _BlinkPerfMeasurement 165 test = _BlinkPerfMeasurement
162 166
163 @classmethod 167 @classmethod
164 def Name(cls): 168 def Name(cls):
165 return 'blink_perf.blink_gc' 169 return 'blink_perf.blink_gc'
166 170
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 return 'blink_perf.pywebsocket' 342 return 'blink_perf.pywebsocket'
339 343
340 def CreateStorySet(self, options): 344 def CreateStorySet(self, options):
341 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket') 345 path = os.path.join(BLINK_PERF_BASE_DIR, 'Pywebsocket')
342 return CreateStorySetFromPath(path, SKIPPED_FILE, 346 return CreateStorySetFromPath(path, SKIPPED_FILE,
343 shared_page_state_class=_SharedPywebsocketPageState) 347 shared_page_state_class=_SharedPywebsocketPageState)
344 348
345 @classmethod 349 @classmethod
346 def ShouldDisable(cls, possible_browser): 350 def ShouldDisable(cls, possible_browser):
347 return cls.IsSvelte(possible_browser) # http://crbug.com/551950 351 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