OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 sys |
| 5 |
4 from telemetry import test | 6 from telemetry import test |
5 | 7 |
6 from measurements import page_cycler | 8 from measurements import page_cycler |
7 | 9 |
8 | 10 |
9 class PageCyclerBloat(test.Test): | 11 class PageCyclerBloat(test.Test): |
10 test = page_cycler.PageCycler | 12 test = page_cycler.PageCycler |
11 page_set = 'page_sets/page_cycler/bloat.json' | 13 page_set = 'page_sets/page_cycler/bloat.json' |
12 options = {'pageset_repeat_iters': 10} | 14 options = {'pageset_repeat_iters': 10} |
13 | 15 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 options = {'pageset_repeat_iters': 10} | 98 options = {'pageset_repeat_iters': 10} |
97 | 99 |
98 | 100 |
99 class PageCyclerToughLayoutCases(test.Test): | 101 class PageCyclerToughLayoutCases(test.Test): |
100 test = page_cycler.PageCycler | 102 test = page_cycler.PageCycler |
101 page_set = 'page_sets/tough_layout_cases.json' | 103 page_set = 'page_sets/tough_layout_cases.json' |
102 options = {'pageset_repeat_iters': 10} | 104 options = {'pageset_repeat_iters': 10} |
103 | 105 |
104 | 106 |
105 class PageCyclerTypical25(test.Test): | 107 class PageCyclerTypical25(test.Test): |
| 108 # crbug.com/273986: This test is really flakey on xp. |
| 109 enabled = not sys.platform.startswith('win') |
106 test = page_cycler.PageCycler | 110 test = page_cycler.PageCycler |
107 page_set = 'page_sets/typical_25.json' | 111 page_set = 'page_sets/typical_25.json' |
108 options = {'pageset_repeat_iters': 10} | 112 options = {'pageset_repeat_iters': 10} |
OLD | NEW |