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 import sys |
| 5 |
4 from telemetry import test | 6 from telemetry import test |
5 | 7 |
6 from measurements import session_restore | 8 from measurements import session_restore |
7 | 9 |
8 | 10 |
9 class SessionRestoreColdTypical25(test.Test): | 11 class SessionRestoreColdTypical25(test.Test): |
| 12 # crbug.com/325479: Disabling this test for now since it never ran before. |
| 13 enabled = not sys.platform.startswith('linux') |
10 tag = 'cold' | 14 tag = 'cold' |
11 test = session_restore.SessionRestore | 15 test = session_restore.SessionRestore |
12 page_set = 'page_sets/typical_25.json' | 16 page_set = 'page_sets/typical_25.json' |
13 options = {'cold': True, | 17 options = {'cold': True, |
14 'pageset_repeat_iters': 5} | 18 'pageset_repeat_iters': 5} |
15 | 19 |
16 | 20 |
17 class SessionRestoreWarmTypical25(test.Test): | 21 class SessionRestoreWarmTypical25(test.Test): |
18 tag = 'warm' | 22 tag = 'warm' |
19 test = session_restore.SessionRestore | 23 test = session_restore.SessionRestore |
20 page_set = 'page_sets/typical_25.json' | 24 page_set = 'page_sets/typical_25.json' |
21 options = {'warm': True, | 25 options = {'warm': True, |
22 'pageset_repeat_iters': 20} | 26 'pageset_repeat_iters': 20} |
OLD | NEW |