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

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

Issue 23618042: [telemetry] Add new benchmarks and rename them all. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/benchmarks/startup.py
diff --git a/tools/perf/benchmarks/startup.py b/tools/perf/benchmarks/startup.py
index df8d0500ed272677bf96bc000b23352faedce3df..c5055ad8b476a30971aa56b77eb6d1ea1328d0bb 100644
--- a/tools/perf/benchmarks/startup.py
+++ b/tools/perf/benchmarks/startup.py
@@ -6,14 +6,16 @@ from telemetry import test
from measurements import startup
-class StartupColdBlankPage(test.Test):
+class StartupCold(test.Test):
+ name = 'cold'
tonyg 2013/09/11 02:04:05 We are planning to add startup tests that start up
dtu 2013/09/12 00:12:58 Done.
test = startup.Startup
page_set = 'page_sets/blank_page.json'
options = {'cold': True,
'pageset_repeat_iters': 5}
-class StartupWarmBlankPage(test.Test):
+class StartupWarm(test.Test):
+ name = 'warm'
test = startup.Startup
page_set = 'page_sets/blank_page.json'
options = {'warm': True,

Powered by Google App Engine
This is Rietveld 408576698