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

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

Issue 619903003: Turn off telemetry tests which crash on WebView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add bug numbers inline. Created 6 years, 2 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 | tools/perf/benchmarks/media.py » ('j') | 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.page import page_set 9 from telemetry.page import page_set
10 from telemetry.page import page_test 10 from telemetry.page import page_test
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 class BlinkPerfCSS(benchmark.Benchmark): 118 class BlinkPerfCSS(benchmark.Benchmark):
119 tag = 'css' 119 tag = 'css'
120 test = _BlinkPerfMeasurement 120 test = _BlinkPerfMeasurement
121 121
122 def CreatePageSet(self, options): 122 def CreatePageSet(self, options):
123 path = os.path.join(BLINK_PERF_BASE_DIR, 'CSS') 123 path = os.path.join(BLINK_PERF_BASE_DIR, 'CSS')
124 return _CreatePageSetFromPath(path, SKIPPED_FILE) 124 return _CreatePageSetFromPath(path, SKIPPED_FILE)
125 125
126 126
127 @benchmark.Disabled('android-webview') # crbug.com/419692
127 class BlinkPerfCanvas(benchmark.Benchmark): 128 class BlinkPerfCanvas(benchmark.Benchmark):
128 tag = 'canvas' 129 tag = 'canvas'
129 test = _BlinkPerfMeasurement 130 test = _BlinkPerfMeasurement
130 131
131 def CreatePageSet(self, options): 132 def CreatePageSet(self, options):
132 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas') 133 path = os.path.join(BLINK_PERF_BASE_DIR, 'Canvas')
133 return _CreatePageSetFromPath(path, SKIPPED_FILE) 134 return _CreatePageSetFromPath(path, SKIPPED_FILE)
134 135
135 136
136 class BlinkPerfDOM(benchmark.Benchmark): 137 class BlinkPerfDOM(benchmark.Benchmark):
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 199
199 class BlinkPerfShadowDOM(benchmark.Benchmark): 200 class BlinkPerfShadowDOM(benchmark.Benchmark):
200 tag = 'shadow_dom' 201 tag = 'shadow_dom'
201 test = _BlinkPerfMeasurement 202 test = _BlinkPerfMeasurement
202 203
203 def CreatePageSet(self, options): 204 def CreatePageSet(self, options):
204 path = os.path.join(BLINK_PERF_BASE_DIR, 'ShadowDOM') 205 path = os.path.join(BLINK_PERF_BASE_DIR, 'ShadowDOM')
205 return _CreatePageSetFromPath(path, SKIPPED_FILE) 206 return _CreatePageSetFromPath(path, SKIPPED_FILE)
206 207
207 208
209 @benchmark.Disabled('android-webview') # crbug.com/419690
208 class BlinkPerfXMLHttpRequest(benchmark.Benchmark): 210 class BlinkPerfXMLHttpRequest(benchmark.Benchmark):
209 tag = 'xml_http_request' 211 tag = 'xml_http_request'
210 test = _BlinkPerfMeasurement 212 test = _BlinkPerfMeasurement
211 213
212 def CreatePageSet(self, options): 214 def CreatePageSet(self, options):
213 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest') 215 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest')
214 return _CreatePageSetFromPath(path, SKIPPED_FILE) 216 return _CreatePageSetFromPath(path, SKIPPED_FILE)
OLDNEW
« no previous file with comments | « no previous file | tools/perf/benchmarks/media.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698