Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from telemetry import benchmark | |
| 6 | |
| 7 from measurements import energy | |
| 8 import page_sets | |
| 9 | |
| 10 | |
| 11 class EnergyTop25(benchmark.Benchmark): | |
| 12 """Top 25 energy test.""" | |
|
ccameron
2015/04/20 21:36:33
I'd like to add some simpler pages, in particular
Andre
2015/04/20 21:52:39
Sounds good. We should create a new pageset instea
sullivan
2015/04/21 15:56:53
There already exists a tough_energy_cases pageset,
| |
| 13 test = energy.Energy | |
| 14 page_set = page_sets.Top25PageSet | |
| 15 @classmethod | |
| 16 def Name(cls): | |
| 17 return 'energy.top_25' | |
| OLD | NEW |