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

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

Issue 738663002: [Telemetry] Disable session restore with URL benchmarks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | 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 4
5 import os 5 import os
6 import tempfile 6 import tempfile
7 7
8 from measurements import session_restore 8 from measurements import session_restore
9 from measurements import session_restore_with_url 9 from measurements import session_restore_with_url
10 import page_sets 10 import page_sets
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 @benchmark.Disabled('android', 'linux', 'reference') 50 @benchmark.Disabled('android', 'linux', 'reference')
51 class SessionRestoreWarmTypical25(_SessionRestoreTest): 51 class SessionRestoreWarmTypical25(_SessionRestoreTest):
52 tag = 'warm' 52 tag = 'warm'
53 test = session_restore.SessionRestore 53 test = session_restore.SessionRestore
54 page_set = page_sets.Typical25PageSet 54 page_set = page_sets.Typical25PageSet
55 options = {'warm': True, 55 options = {'warm': True,
56 'pageset_repeat': 20} 56 'pageset_repeat': 20}
57 57
58 58
59 # crbug.com/325479, crbug.com/381990, crbug.com/405386 59 # crbug.com/325479, crbug.com/381990, crbug.com/405386
60 @benchmark.Disabled('android', 'linux', 'reference', 'snowleopard') 60 @benchmark.Disabled
61 class SessionRestoreWithUrlCold(_SessionRestoreTest): 61 class SessionRestoreWithUrlCold(_SessionRestoreTest):
62 """Measure Chrome cold session restore with startup URLs.""" 62 """Measure Chrome cold session restore with startup URLs."""
63 tag = 'cold' 63 tag = 'cold'
64 test = session_restore_with_url.SessionRestoreWithUrl 64 test = session_restore_with_url.SessionRestoreWithUrl
65 page_set = page_sets.StartupPagesPageSet 65 page_set = page_sets.StartupPagesPageSet
66 options = {'cold': True, 66 options = {'cold': True,
67 'pageset_repeat': 5} 67 'pageset_repeat': 5}
68 68
69 69
70 # crbug.com/325479, crbug.com/381990, crbug.com/405386 70 # crbug.com/325479, crbug.com/381990, crbug.com/405386
71 @benchmark.Disabled('android', 'linux', 'reference', 'snowleopard') 71 @benchmark.Disabled
72 class SessionRestoreWithUrlWarm(_SessionRestoreTest): 72 class SessionRestoreWithUrlWarm(_SessionRestoreTest):
73 """Measure Chrome warm session restore with startup URLs.""" 73 """Measure Chrome warm session restore with startup URLs."""
74 tag = 'warm' 74 tag = 'warm'
75 test = session_restore_with_url.SessionRestoreWithUrl 75 test = session_restore_with_url.SessionRestoreWithUrl
76 page_set = page_sets.StartupPagesPageSet 76 page_set = page_sets.StartupPagesPageSet
77 options = {'warm': True, 77 options = {'warm': True,
78 'pageset_repeat': 10} 78 'pageset_repeat': 10}
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698