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

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

Issue 271583003: [Telemetry] Disable a Dromaeo benchmark on XP due to OOM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 metrics import power 7 from metrics import power
8 from telemetry import test 8 from telemetry import test
9 from telemetry.core import util 9 from telemetry.core import util
10 from telemetry.page import page_measurement 10 from telemetry.page import page_measurement
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 ps.AddPageWithDefaultRunNavigate(url) 67 ps.AddPageWithDefaultRunNavigate(url)
68 return ps 68 return ps
69 69
70 70
71 class DromaeoDomCoreAttr(_DromaeoBenchmark): 71 class DromaeoDomCoreAttr(_DromaeoBenchmark):
72 """Dromaeo DOMCore attr JavaScript benchmark.""" 72 """Dromaeo DOMCore attr JavaScript benchmark."""
73 tag = 'domcoreattr' 73 tag = 'domcoreattr'
74 query_param = 'dom-attr' 74 query_param = 'dom-attr'
75 75
76 76
77 @test.Disabled('xp') # crbug.com/323782
77 class DromaeoDomCoreModify(_DromaeoBenchmark): 78 class DromaeoDomCoreModify(_DromaeoBenchmark):
78 """Dromaeo DOMCore modify JavaScript benchmark.""" 79 """Dromaeo DOMCore modify JavaScript benchmark."""
79 tag = 'domcoremodify' 80 tag = 'domcoremodify'
80 query_param = 'dom-modify' 81 query_param = 'dom-modify'
81 82
82 83
83 class DromaeoDomCoreQuery(_DromaeoBenchmark): 84 class DromaeoDomCoreQuery(_DromaeoBenchmark):
84 """Dromaeo DOMCore query JavaScript benchmark.""" 85 """Dromaeo DOMCore query JavaScript benchmark."""
85 tag = 'domcorequery' 86 tag = 'domcorequery'
86 query_param = 'dom-query' 87 query_param = 'dom-query'
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 """Dromaeo JSLib traverse jquery JavaScript benchmark""" 145 """Dromaeo JSLib traverse jquery JavaScript benchmark"""
145 tag = 'jslibtraversejquery' 146 tag = 'jslibtraversejquery'
146 query_param = 'jslib-traverse-jquery' 147 query_param = 'jslib-traverse-jquery'
147 148
148 149
149 class DromaeoJslibTraversePrototype(_DromaeoBenchmark): 150 class DromaeoJslibTraversePrototype(_DromaeoBenchmark):
150 """Dromaeo JSLib traverse prototype JavaScript benchmark""" 151 """Dromaeo JSLib traverse prototype JavaScript benchmark"""
151 tag = 'jslibtraverseprototype' 152 tag = 'jslibtraverseprototype'
152 query_param = 'jslib-traverse-prototype' 153 query_param = 'jslib-traverse-prototype'
153 154
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