OLD | NEW |
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 Loading... |
76 | 76 |
77 | 77 |
78 @benchmark.Disabled('android', 'xp') # crbug.com/381742 | 78 @benchmark.Disabled('android', 'xp') # crbug.com/381742 |
79 class Jetstream(benchmark.Benchmark): | 79 class Jetstream(benchmark.Benchmark): |
80 test = _JetstreamMeasurement | 80 test = _JetstreamMeasurement |
81 | 81 |
82 def CreatePageSet(self, options): | 82 def CreatePageSet(self, options): |
83 ps = page_set.PageSet( | 83 ps = page_set.PageSet( |
84 archive_data_file='../page_sets/data/jetstream.json', | 84 archive_data_file='../page_sets/data/jetstream.json', |
85 make_javascript_deterministic=False, | 85 make_javascript_deterministic=False, |
86 file_path=os.path.abspath(__file__)) | 86 file_path=os.path.abspath(__file__), |
| 87 bucket=page_set.INTERNAL_BUCKET) |
87 ps.AddPageWithDefaultRunNavigate('http://browserbench.org/JetStream/') | 88 ps.AddPageWithDefaultRunNavigate('http://browserbench.org/JetStream/') |
88 return ps | 89 return ps |
OLD | NEW |