OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 Octane 2.0 javascript benchmark. | 5 """Runs Octane 2.0 javascript benchmark. |
6 | 6 |
7 Octane 2.0 is a modern benchmark that measures a JavaScript engine's performance | 7 Octane 2.0 is a modern benchmark that measures a JavaScript engine's performance |
8 by running a suite of tests representative of today's complex and demanding web | 8 by running a suite of tests representative of today's complex and demanding web |
9 applications. Octane's goal is to measure the performance of JavaScript code | 9 applications. Octane's goal is to measure the performance of JavaScript code |
10 found in large, real-world web applications. | 10 found in large, real-world web applications. |
11 Octane 2.0 consists of 17 tests, four more than Octane v1. | 11 Octane 2.0 consists of 17 tests, four more than Octane v1. |
12 """ | 12 """ |
13 | 13 |
14 import os | 14 import os |
15 | 15 |
16 from metrics import power | 16 from metrics import power |
17 from metrics import statistics | |
18 from telemetry import test | 17 from telemetry import test |
19 from telemetry.page import page_measurement | 18 from telemetry.page import page_measurement |
20 from telemetry.page import page_set | 19 from telemetry.page import page_set |
| 20 from telemetry.util import statistics |
21 | 21 |
22 _GB = 1024 * 1024 * 1024 | 22 _GB = 1024 * 1024 * 1024 |
23 | 23 |
24 class _OctaneMeasurement(page_measurement.PageMeasurement): | 24 class _OctaneMeasurement(page_measurement.PageMeasurement): |
25 def __init__(self): | 25 def __init__(self): |
26 super(_OctaneMeasurement, self).__init__() | 26 super(_OctaneMeasurement, self).__init__() |
27 self._power_metric = power.PowerMetric() | 27 self._power_metric = power.PowerMetric() |
28 | 28 |
29 def CustomizeBrowserOptions(self, options): | 29 def CustomizeBrowserOptions(self, options): |
30 power.PowerMetric.CustomizeBrowserOptions(options) | 30 power.PowerMetric.CustomizeBrowserOptions(options) |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 return page_set.PageSet.FromDict({ | 81 return page_set.PageSet.FromDict({ |
82 'archive_data_file': '../page_sets/data/octane.json', | 82 'archive_data_file': '../page_sets/data/octane.json', |
83 'make_javascript_deterministic': False, | 83 'make_javascript_deterministic': False, |
84 'pages': [{ | 84 'pages': [{ |
85 'url': | 85 'url': |
86 'http://octane-benchmark.googlecode.com/svn/latest/index.html?auto=1' | 86 'http://octane-benchmark.googlecode.com/svn/latest/index.html?auto=1' |
87 } | 87 } |
88 ] | 88 ] |
89 }, os.path.abspath(__file__)) | 89 }, os.path.abspath(__file__)) |
90 | 90 |
OLD | NEW |