Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: tools/perf/benchmarks/session_restore.py

Issue 103153002: Disable page_cycler.typical_25 on windows, and session_restore.cold.typical_25 on linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/page_cycler.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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}
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/page_cycler.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698