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

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

Issue 113563004: Add perf tests for starting Chrome with URL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing file 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/benchmarks/start_with_url.py
diff --git a/tools/perf/benchmarks/startup.py b/tools/perf/benchmarks/start_with_url.py
similarity index 55%
copy from tools/perf/benchmarks/startup.py
copy to tools/perf/benchmarks/start_with_url.py
index 1fda6bd638b1d7c1ebb4d2483083bb1eb6b88555..d617fc66237206b0b3f1973a52b3bb39ec4d9078 100644
--- a/tools/perf/benchmarks/startup.py
+++ b/tools/perf/benchmarks/start_with_url.py
@@ -6,17 +6,19 @@ from telemetry import test
from measurements import startup
-class StartupColdBlankPage(test.Test):
+class StartWithUrlCold(test.Test):
+ """Measure time to start Chrome cold with various pages"""
tag = 'cold'
test = startup.Startup
- page_set = 'page_sets/blank_page.json'
+ page_set = 'page_sets/startup_pages.json'
options = {'cold': True,
'pageset_repeat_iters': 5}
-
-class StartupWarmBlankPage(test.Test):
+class StartWithUrlWarm(test.Test):
+ """Measure time to start Chrome cold with various pages"""
tag = 'warm'
test = startup.Startup
- page_set = 'page_sets/blank_page.json'
+ page_set = 'page_sets/startup_pages.json'
options = {'warm': True,
- 'pageset_repeat_iters': 20}
+ 'pageset_repeat_iters': 10}
+

Powered by Google App Engine
This is Rietveld 408576698