OLD | NEW |
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'in sunspider')) | 125 'in sunspider')) |
126 | 126 |
127 | 127 |
128 class Sunspider(benchmark.Benchmark): | 128 class Sunspider(benchmark.Benchmark): |
129 """Apple's SunSpider JavaScript benchmark. | 129 """Apple's SunSpider JavaScript benchmark. |
130 | 130 |
131 http://www.webkit.org/perf/sunspider/sunspider.html | 131 http://www.webkit.org/perf/sunspider/sunspider.html |
132 """ | 132 """ |
133 test = _SunspiderMeasurement | 133 test = _SunspiderMeasurement |
134 | 134 |
| 135 @classmethod |
| 136 def Name(cls): |
| 137 return 'sunspider' |
| 138 |
135 def CreatePageSet(self, options): | 139 def CreatePageSet(self, options): |
136 ps = page_set.PageSet( | 140 ps = page_set.PageSet( |
137 archive_data_file='../page_sets/data/sunspider.json', | 141 archive_data_file='../page_sets/data/sunspider.json', |
138 file_path=os.path.abspath(__file__), | 142 file_path=os.path.abspath(__file__), |
139 bucket=page_set.PARTNER_BUCKET) | 143 bucket=page_set.PARTNER_BUCKET) |
140 ps.AddUserStory(page_module.Page( | 144 ps.AddUserStory(page_module.Page( |
141 _URL, ps, ps.base_dir, make_javascript_deterministic=False)) | 145 _URL, ps, ps.base_dir, make_javascript_deterministic=False)) |
142 return ps | 146 return ps |
OLD | NEW |