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

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

Issue 1184783004: Disable blink_perf.bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 4
5 import os 5 import os
6 6
7 from core import perf_benchmark 7 from core import perf_benchmark
8 8
9 from telemetry import benchmark 9 from telemetry import benchmark
10 from telemetry.core import util 10 from telemetry.core import util
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 @classmethod 131 @classmethod
132 def Name(cls): 132 def Name(cls):
133 return 'blink_perf.animation' 133 return 'blink_perf.animation'
134 134
135 def CreatePageSet(self, options): 135 def CreatePageSet(self, options):
136 path = os.path.join(BLINK_PERF_BASE_DIR, 'Animation') 136 path = os.path.join(BLINK_PERF_BASE_DIR, 'Animation')
137 return CreatePageSetFromPath(path, SKIPPED_FILE) 137 return CreatePageSetFromPath(path, SKIPPED_FILE)
138 138
139 139
140 @benchmark.Disabled() # http://crbug.com/500958
nednguyen 2015/06/17 16:10:46 It looks to me that it should be "@benchmark.Disab
shatch 2015/06/17 16:14:19 Done.
140 class BlinkPerfBindings(perf_benchmark.PerfBenchmark): 141 class BlinkPerfBindings(perf_benchmark.PerfBenchmark):
141 tag = 'bindings' 142 tag = 'bindings'
142 test = _BlinkPerfMeasurement 143 test = _BlinkPerfMeasurement
143 144
144 @classmethod 145 @classmethod
145 def Name(cls): 146 def Name(cls):
146 return 'blink_perf.bindings' 147 return 'blink_perf.bindings'
147 148
148 def CreatePageSet(self, options): 149 def CreatePageSet(self, options):
149 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings') 150 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings')
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 tag = 'xml_http_request' 316 tag = 'xml_http_request'
316 test = _BlinkPerfMeasurement 317 test = _BlinkPerfMeasurement
317 318
318 @classmethod 319 @classmethod
319 def Name(cls): 320 def Name(cls):
320 return 'blink_perf.xml_http_request' 321 return 'blink_perf.xml_http_request'
321 322
322 def CreatePageSet(self, options): 323 def CreatePageSet(self, options):
323 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest') 324 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest')
324 return CreatePageSetFromPath(path, SKIPPED_FILE) 325 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