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

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

Issue 806513002: Move make_javascript_deterministic to UserStory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years 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 | « tools/perf/benchmarks/speedometer.py ('k') | tools/perf/page_sets/alexa1-10000.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 import collections 4 import collections
5 import json 5 import json
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 import page as page_module 10 from telemetry import page as page_module
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'in sunspider')) 124 'in sunspider'))
125 125
126 126
127 class Sunspider(benchmark.Benchmark): 127 class Sunspider(benchmark.Benchmark):
128 """Apple's SunSpider JavaScript benchmark.""" 128 """Apple's SunSpider JavaScript benchmark."""
129 test = _SunspiderMeasurement 129 test = _SunspiderMeasurement
130 130
131 def CreatePageSet(self, options): 131 def CreatePageSet(self, options):
132 ps = page_set.PageSet( 132 ps = page_set.PageSet(
133 archive_data_file='../page_sets/data/sunspider.json', 133 archive_data_file='../page_sets/data/sunspider.json',
134 make_javascript_deterministic=False,
135 file_path=os.path.abspath(__file__), 134 file_path=os.path.abspath(__file__),
136 bucket=page_set.PARTNER_BUCKET) 135 bucket=page_set.PARTNER_BUCKET)
137 ps.AddUserStory(page_module.Page(_URL, ps, ps.base_dir)) 136 ps.AddUserStory(page_module.Page(
137 _URL, ps, ps.base_dir, make_javascript_deterministic=False))
138 return ps 138 return ps
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/speedometer.py ('k') | tools/perf/page_sets/alexa1-10000.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698