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

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

Issue 582803005: [Telemetry] Disable session_restore.{cold,warm}.startup_pages on 10.6 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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 | tools/telemetry/telemetry/core/backends/chrome/chrome_browser_backend.py » ('j') | 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 30 matching lines...) Expand all
41 41
42 @benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990 42 @benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990
43 class SessionRestoreWarmTypical25(_SessionRestoreTest): 43 class SessionRestoreWarmTypical25(_SessionRestoreTest):
44 tag = 'warm' 44 tag = 'warm'
45 test = session_restore.SessionRestore 45 test = session_restore.SessionRestore
46 page_set = page_sets.Typical25PageSet 46 page_set = page_sets.Typical25PageSet
47 options = {'warm': True, 47 options = {'warm': True,
48 'pageset_repeat': 20} 48 'pageset_repeat': 20}
49 49
50 50
51 @benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990 51 # crbug.com/325479, crbug.com/381990, crbug.com/405386
52 @benchmark.Disabled('android', 'linux', 'snowleopard')
52 class SessionRestoreWithUrlCold(_SessionRestoreTest): 53 class SessionRestoreWithUrlCold(_SessionRestoreTest):
53 """Measure Chrome cold session restore with startup URLs.""" 54 """Measure Chrome cold session restore with startup URLs."""
54 tag = 'cold' 55 tag = 'cold'
55 test = session_restore_with_url.SessionRestoreWithUrl 56 test = session_restore_with_url.SessionRestoreWithUrl
56 page_set = page_sets.StartupPagesPageSet 57 page_set = page_sets.StartupPagesPageSet
57 options = {'cold': True, 58 options = {'cold': True,
58 'pageset_repeat': 5} 59 'pageset_repeat': 5}
59 60
60 61
61 @benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990 62 # crbug.com/325479, crbug.com/381990, crbug.com/405386
63 @benchmark.Disabled('android', 'linux', 'snowleopard')
62 class SessionRestoreWithUrlWarm(_SessionRestoreTest): 64 class SessionRestoreWithUrlWarm(_SessionRestoreTest):
63 """Measure Chrome warm session restore with startup URLs.""" 65 """Measure Chrome warm session restore with startup URLs."""
64 tag = 'warm' 66 tag = 'warm'
65 test = session_restore_with_url.SessionRestoreWithUrl 67 test = session_restore_with_url.SessionRestoreWithUrl
66 page_set = page_sets.StartupPagesPageSet 68 page_set = page_sets.StartupPagesPageSet
67 options = {'warm': True, 69 options = {'warm': True,
68 'pageset_repeat': 10} 70 'pageset_repeat': 10}
OLDNEW
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/backends/chrome/chrome_browser_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698