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

Side by Side Diff: tools/perf/benchmarks/jetstream.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/dromaeo.py ('k') | tools/perf/benchmarks/maps.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 """Runs Apple's JetStream benchmark. 5 """Runs Apple's JetStream benchmark.
6 6
7 JetStream combines a variety of JavaScript benchmarks, covering a variety of 7 JetStream combines a variety of JavaScript benchmarks, covering a variety of
8 advanced workloads and programming techniques, and reports a single score that 8 advanced workloads and programming techniques, and reports a single score that
9 balances them using geometric mean. 9 balances them using geometric mean.
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 None, 'Score', 'score', all_scores)) 76 None, 'Score', 'score', all_scores))
77 77
78 78
79 @benchmark.Disabled('android', 'xp') # crbug.com/381742 79 @benchmark.Disabled('android', 'xp') # crbug.com/381742
80 class Jetstream(benchmark.Benchmark): 80 class Jetstream(benchmark.Benchmark):
81 test = _JetstreamMeasurement 81 test = _JetstreamMeasurement
82 82
83 def CreatePageSet(self, options): 83 def CreatePageSet(self, options):
84 ps = page_set.PageSet( 84 ps = page_set.PageSet(
85 archive_data_file='../page_sets/data/jetstream.json', 85 archive_data_file='../page_sets/data/jetstream.json',
86 make_javascript_deterministic=False,
87 file_path=os.path.abspath(__file__), 86 file_path=os.path.abspath(__file__),
88 bucket=page_set.INTERNAL_BUCKET) 87 bucket=page_set.INTERNAL_BUCKET)
89 ps.AddUserStory(page_module.Page( 88 ps.AddUserStory(page_module.Page(
90 'http://browserbench.org/JetStream/', ps, ps.base_dir)) 89 'http://browserbench.org/JetStream/', ps, ps.base_dir,
90 make_javascript_deterministic=False))
91 return ps 91 return ps
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/dromaeo.py ('k') | tools/perf/benchmarks/maps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698