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

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

Issue 1913903002: [PerfBotSherrif] Rename OS name for disabled startup benchmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | 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 from core import perf_benchmark 5 from core import perf_benchmark
6 from measurements import startup 6 from measurements import startup
7 import page_sets 7 import page_sets
8 from telemetry import benchmark 8 from telemetry import benchmark
9 9
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 tag = 'warm' 54 tag = 'warm'
55 page_set = page_sets.BlankPageSet 55 page_set = page_sets.BlankPageSet
56 56
57 @classmethod 57 @classmethod
58 def Name(cls): 58 def Name(cls):
59 return 'startup.warm.blank_page' 59 return 'startup.warm.blank_page'
60 60
61 61
62 @benchmark.Disabled('reference', # http://crbug.com/476882 62 @benchmark.Disabled('reference', # http://crbug.com/476882
63 'android', # http://crbug.com/481919 63 'android', # http://crbug.com/481919
64 'snowleopard', # http://crbug.com/605485 64 'yosemite', # http://crbug.com/605485
65 'content-shell') # No pregenerated profiles. 65 'content-shell') # No pregenerated profiles.
66 class StartupLargeProfileColdBlankPage(_StartupCold): 66 class StartupLargeProfileColdBlankPage(_StartupCold):
67 """Measures cold startup time with a large profile.""" 67 """Measures cold startup time with a large profile."""
68 tag = 'cold' 68 tag = 'cold'
69 page_set = page_sets.BlankPageSetWithLargeProfile 69 page_set = page_sets.BlankPageSetWithLargeProfile
70 options = {'pageset_repeat': 3} 70 options = {'pageset_repeat': 3}
71 71
72 def __init__(self, max_failures=None): 72 def __init__(self, max_failures=None):
73 super(StartupLargeProfileColdBlankPage, self).__init__(max_failures) 73 super(StartupLargeProfileColdBlankPage, self).__init__(max_failures)
74 74
75 def SetExtraBrowserOptions(self, options): 75 def SetExtraBrowserOptions(self, options):
76 options.browser_startup_timeout = 10 * 60 76 options.browser_startup_timeout = 10 * 60
77 77
78 @classmethod 78 @classmethod
79 def Name(cls): 79 def Name(cls):
80 return 'startup.large_profile.cold.blank_page' 80 return 'startup.large_profile.cold.blank_page'
81 81
82 82
83 @benchmark.Disabled('reference', # http://crbug.com/476882 83 @benchmark.Disabled('reference', # http://crbug.com/476882
84 'android', # http://crbug.com/481919 84 'android', # http://crbug.com/481919
85 'snowleopard', # http://crbug.com/605485 85 'yosemite', # http://crbug.com/605485
86 'content-shell') # No pregenerated profiles. 86 'content-shell') # No pregenerated profiles.
87 class StartupLargeProfileWarmBlankPage(_StartupWarm): 87 class StartupLargeProfileWarmBlankPage(_StartupWarm):
88 """Measures warm startup time with a large profile.""" 88 """Measures warm startup time with a large profile."""
89 tag = 'warm' 89 tag = 'warm'
90 page_set = page_sets.BlankPageSetWithLargeProfile 90 page_set = page_sets.BlankPageSetWithLargeProfile
91 options = {'pageset_repeat': 4} 91 options = {'pageset_repeat': 4}
92 92
93 def __init__(self, max_failures=None): 93 def __init__(self, max_failures=None):
94 super(StartupLargeProfileWarmBlankPage, self).__init__(max_failures) 94 super(StartupLargeProfileWarmBlankPage, self).__init__(max_failures)
95 95
96 def SetExtraBrowserOptions(self, options): 96 def SetExtraBrowserOptions(self, options):
97 options.browser_startup_timeout = 10 * 60 97 options.browser_startup_timeout = 10 * 60
98 98
99 @classmethod 99 @classmethod
100 def Name(cls): 100 def Name(cls):
101 return 'startup.large_profile.warm.blank_page' 101 return 'startup.large_profile.warm.blank_page'
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