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

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

Issue 407023002: Revert of [Telemetry] Disable a Dromaeo benchmark on XP due to OOM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 5 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 math 5 import math
6 import os 6 import os
7 7
8 from metrics import power 8 from metrics import power
9 from telemetry import benchmark 9 from telemetry import benchmark
10 from telemetry.page import page_measurement 10 from telemetry.page import page_measurement
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 ps.AddPageWithDefaultRunNavigate(url) 111 ps.AddPageWithDefaultRunNavigate(url)
112 return ps 112 return ps
113 113
114 114
115 class DromaeoDomCoreAttr(_DromaeoBenchmark): 115 class DromaeoDomCoreAttr(_DromaeoBenchmark):
116 """Dromaeo DOMCore attr JavaScript benchmark.""" 116 """Dromaeo DOMCore attr JavaScript benchmark."""
117 tag = 'domcoreattr' 117 tag = 'domcoreattr'
118 query_param = 'dom-attr' 118 query_param = 'dom-attr'
119 119
120 120
121 @benchmark.Disabled('xp') # crbug.com/323782
122 class DromaeoDomCoreModify(_DromaeoBenchmark): 121 class DromaeoDomCoreModify(_DromaeoBenchmark):
123 """Dromaeo DOMCore modify JavaScript benchmark.""" 122 """Dromaeo DOMCore modify JavaScript benchmark."""
124 tag = 'domcoremodify' 123 tag = 'domcoremodify'
125 query_param = 'dom-modify' 124 query_param = 'dom-modify'
126 125
127 126
128 class DromaeoDomCoreQuery(_DromaeoBenchmark): 127 class DromaeoDomCoreQuery(_DromaeoBenchmark):
129 """Dromaeo DOMCore query JavaScript benchmark.""" 128 """Dromaeo DOMCore query JavaScript benchmark."""
130 tag = 'domcorequery' 129 tag = 'domcorequery'
131 query_param = 'dom-query' 130 query_param = 'dom-query'
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 """Dromaeo JSLib traverse prototype JavaScript benchmark""" 195 """Dromaeo JSLib traverse prototype JavaScript benchmark"""
197 tag = 'jslibtraverseprototype' 196 tag = 'jslibtraverseprototype'
198 query_param = 'jslib-traverse-prototype' 197 query_param = 'jslib-traverse-prototype'
199 198
200 199
201 class DromaeoCSSQueryJquery(_DromaeoBenchmark): 200 class DromaeoCSSQueryJquery(_DromaeoBenchmark):
202 """Dromaeo CSS Query jquery JavaScript benchmark""" 201 """Dromaeo CSS Query jquery JavaScript benchmark"""
203 tag = 'cssqueryjquery' 202 tag = 'cssqueryjquery'
204 query_param = 'cssquery-jquery' 203 query_param = 'cssquery-jquery'
205 204
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