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

Unified Diff: tools/perf/benchmarks/startup.py

Issue 124733002: [Telemetry] Support downloading profiles from cloud storage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't cache FindBrowser results since it breaks unit tests Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/perf/generated_profiles/darwin/many_extensions_profile.zip.sha1 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/startup.py
diff --git a/tools/perf/benchmarks/startup.py b/tools/perf/benchmarks/startup.py
index 1fda6bd638b1d7c1ebb4d2483083bb1eb6b88555..662ba5900507eaf44221a9df6b509f647221ebe3 100644
--- a/tools/perf/benchmarks/startup.py
+++ b/tools/perf/benchmarks/startup.py
@@ -20,3 +20,37 @@ class StartupWarmBlankPage(test.Test):
page_set = 'page_sets/blank_page.json'
options = {'warm': True,
'pageset_repeat_iters': 20}
+
+class StartupColdTheme(test.Test):
+ tag = 'theme_cold'
+ test = startup.Startup
+ page_set = 'page_sets/blank_page.json'
+ generated_profile_archive = 'theme_profile.zip'
+ options = {'cold': True,
+ 'pageset_repeat_iters': 5}
+
+
+class StartupWarmTheme(test.Test):
+ tag = 'theme_warm'
+ test = startup.Startup
+ page_set = 'page_sets/blank_page.json'
+ generated_profile_archive = 'theme_profile.zip'
+ options = {'warm': True,
+ 'pageset_repeat_iters': 20}
+
+class StartupColdManyExtensions(test.Test):
+ tag = 'many_extensions_cold'
+ test = startup.Startup
+ page_set = 'page_sets/blank_page.json'
+ generated_profile_archive = 'many_extensions_profile.zip'
+ options = {'cold': True,
+ 'pageset_repeat_iters': 5}
+
+
+class StartupWarmManyExtensions(test.Test):
+ tag = 'many_extensions_warm'
+ test = startup.Startup
+ page_set = 'page_sets/blank_page.json'
+ generated_profile_archive = 'many_extensions_profile.zip'
+ options = {'warm': True,
+ 'pageset_repeat_iters': 20}
« no previous file with comments | « no previous file | tools/perf/generated_profiles/darwin/many_extensions_profile.zip.sha1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698