| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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. |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 results.AddSummaryValue( | 128 results.AddSummaryValue( |
| 129 scalar.ScalarValue(None, 'Total.Score', 'score', total, | 129 scalar.ScalarValue(None, 'Total.Score', 'score', total, |
| 130 description='Geometric mean of the scores of each ' | 130 description='Geometric mean of the scores of each ' |
| 131 'individual benchmark in the Octane ' | 131 'individual benchmark in the Octane ' |
| 132 'benchmark collection.')) | 132 'benchmark collection.')) |
| 133 | 133 |
| 134 | 134 |
| 135 class Octane(perf_benchmark.PerfBenchmark): | 135 class Octane(perf_benchmark.PerfBenchmark): |
| 136 """Google's Octane JavaScript benchmark. | 136 """Google's Octane JavaScript benchmark. |
| 137 | 137 |
| 138 http://octane-benchmark.googlecode.com/svn/latest/index.html | 138 http://chromium.github.io/octane/index.html?auto=1 |
| 139 """ | 139 """ |
| 140 test = _OctaneMeasurement | 140 test = _OctaneMeasurement |
| 141 | 141 |
| 142 @classmethod | 142 @classmethod |
| 143 def Name(cls): | 143 def Name(cls): |
| 144 return 'octane' | 144 return 'octane' |
| 145 | 145 |
| 146 def CreateStorySet(self, options): | 146 def CreateStorySet(self, options): |
| 147 ps = story.StorySet( | 147 ps = story.StorySet( |
| 148 archive_data_file='../page_sets/data/octane.json', | 148 archive_data_file='../page_sets/data/octane.json', |
| 149 base_dir=os.path.dirname(os.path.abspath(__file__)), | 149 base_dir=os.path.dirname(os.path.abspath(__file__)), |
| 150 cloud_storage_bucket=story.PUBLIC_BUCKET) | 150 cloud_storage_bucket=story.PUBLIC_BUCKET) |
| 151 ps.AddStory(page_module.Page( | 151 ps.AddStory(page_module.Page( |
| 152 'http://octane-benchmark.googlecode.com/svn/latest/index.html?auto=1', | 152 'http://chromium.github.io/octane/index.html?auto=1', |
| 153 ps, ps.base_dir, make_javascript_deterministic=False)) | 153 ps, ps.base_dir, make_javascript_deterministic=False)) |
| 154 return ps | 154 return ps |
| OLD | NEW |