| 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 | 4 |
| 5 from measurements import page_cycler | 5 from measurements import page_cycler |
| 6 import page_sets | 6 import page_sets |
| 7 from telemetry import benchmark | 7 from telemetry import benchmark |
| 8 | 8 |
| 9 | 9 |
| 10 class PageCyclerBloat(benchmark.Benchmark): | 10 class PageCyclerBloat(benchmark.Benchmark): |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 options = {'pageset_repeat': 10} | 98 options = {'pageset_repeat': 10} |
| 99 | 99 |
| 100 | 100 |
| 101 @benchmark.Disabled('android') # crbug.com/357326 | 101 @benchmark.Disabled('android') # crbug.com/357326 |
| 102 class PageCyclerToughLayoutCases(benchmark.Benchmark): | 102 class PageCyclerToughLayoutCases(benchmark.Benchmark): |
| 103 test = page_cycler.PageCycler | 103 test = page_cycler.PageCycler |
| 104 page_set = page_sets.ToughLayoutCasesPageSet | 104 page_set = page_sets.ToughLayoutCasesPageSet |
| 105 options = {'pageset_repeat': 10} | 105 options = {'pageset_repeat': 10} |
| 106 | 106 |
| 107 | 107 |
| 108 # crbug.com/273986: This test is really flakey on xp. | |
| 109 # cabug.com/341843: This test is always timing out on Android. | 108 # cabug.com/341843: This test is always timing out on Android. |
| 110 @benchmark.Disabled('android', 'win') | 109 @benchmark.Disabled('android') |
| 111 class PageCyclerTypical25(benchmark.Benchmark): | 110 class PageCyclerTypical25(benchmark.Benchmark): |
| 112 test = page_cycler.PageCycler | 111 test = page_cycler.PageCycler |
| 113 page_set = page_sets.Typical25PageSet | 112 page_set = page_sets.Typical25PageSet |
| 114 options = {'pageset_repeat': 10} | 113 options = {'pageset_repeat': 10} |
| OLD | NEW |