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

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

Issue 1136753005: Disable blink_perf.parser, crashing on the chromium.perf waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 telemetry import benchmark 7 from telemetry import benchmark
8 from telemetry.core import util 8 from telemetry.core import util
9 from telemetry import page as page_module 9 from telemetry import page as page_module
10 from telemetry.page import page_set 10 from telemetry.page import page_set
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 @classmethod 161 @classmethod
162 def Name(cls): 162 def Name(cls):
163 return 'blink_perf.css' 163 return 'blink_perf.css'
164 164
165 def CreatePageSet(self, options): 165 def CreatePageSet(self, options):
166 path = os.path.join(BLINK_PERF_BASE_DIR, 'CSS') 166 path = os.path.join(BLINK_PERF_BASE_DIR, 'CSS')
167 return CreatePageSetFromPath(path, SKIPPED_FILE) 167 return CreatePageSetFromPath(path, SKIPPED_FILE)
168 168
169 169
170 @benchmark.Disabled('win', # http://crbug.com/488493 170 @benchmark.Disabled('linux') # http://crbug.com/488059
171 'linux') # http://crbug.com/488059
172 class BlinkPerfCanvas(benchmark.Benchmark): 171 class BlinkPerfCanvas(benchmark.Benchmark):
173 tag = 'canvas' 172 tag = 'canvas'
174 test = _BlinkPerfMeasurement 173 test = _BlinkPerfMeasurement
175 174
176 @classmethod 175 @classmethod
177 def Name(cls): 176 def Name(cls):
178 return 'blink_perf.canvas' 177 return 'blink_perf.canvas'
179 178
180 def CreatePageSet(self, options): 179 def CreatePageSet(self, options):
181 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas') 180 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas')
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 238
240 @classmethod 239 @classmethod
241 def Name(cls): 240 def Name(cls):
242 return 'blink_perf.mutation' 241 return 'blink_perf.mutation'
243 242
244 def CreatePageSet(self, options): 243 def CreatePageSet(self, options):
245 path = os.path.join(BLINK_PERF_BASE_DIR, 'Mutation') 244 path = os.path.join(BLINK_PERF_BASE_DIR, 'Mutation')
246 return CreatePageSetFromPath(path, SKIPPED_FILE) 245 return CreatePageSetFromPath(path, SKIPPED_FILE)
247 246
248 247
248 @benchmark.Disabled('win') # crbug.com/488493
249 class BlinkPerfParser(benchmark.Benchmark): 249 class BlinkPerfParser(benchmark.Benchmark):
250 tag = 'parser' 250 tag = 'parser'
251 test = _BlinkPerfMeasurement 251 test = _BlinkPerfMeasurement
252 252
253 @classmethod 253 @classmethod
254 def Name(cls): 254 def Name(cls):
255 return 'blink_perf.parser' 255 return 'blink_perf.parser'
256 256
257 def CreatePageSet(self, options): 257 def CreatePageSet(self, options):
258 path = os.path.join(BLINK_PERF_BASE_DIR, 'Parser') 258 path = os.path.join(BLINK_PERF_BASE_DIR, 'Parser')
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 tag = 'xml_http_request' 301 tag = 'xml_http_request'
302 test = _BlinkPerfMeasurement 302 test = _BlinkPerfMeasurement
303 303
304 @classmethod 304 @classmethod
305 def Name(cls): 305 def Name(cls):
306 return 'blink_perf.xml_http_request' 306 return 'blink_perf.xml_http_request'
307 307
308 def CreatePageSet(self, options): 308 def CreatePageSet(self, options):
309 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest') 309 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest')
310 return CreatePageSetFromPath(path, SKIPPED_FILE) 310 return CreatePageSetFromPath(path, SKIPPED_FILE)
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