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

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

Issue 23465003: Adding pagesets for gmail and plus. Creating endure benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/endure.py
diff --git a/tools/perf/benchmarks/endure.py b/tools/perf/benchmarks/endure.py
new file mode 100644
index 0000000000000000000000000000000000000000..1d1205d4378b1f05eee69df5674ac5cea7a9b5b7
--- /dev/null
+++ b/tools/perf/benchmarks/endure.py
@@ -0,0 +1,55 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+from telemetry import test
+
+from measurements import endure
+
+
+class EndureCalendarForwardBackward(test.Test):
+ test = endure.Endure
+ page_set = 'page_sets/calendar_forward_backward.json'
+ options = {
+ 'output_format': 'csv',
tonyg 2013/08/27 01:23:02 Why are we using csv for these?
+ 'skip_navigate_on_repeat': True,
+ 'page_repeat_secs': 60
+ }
+
+
+class EndureGmailAltThreadlistConversation(test.Test):
+ test = endure.Endure
+ page_set = 'page_sets/gmail_alt_threadlist_conversation.json'
+ options = {
+ 'output_format': 'csv',
+ 'skip_navigate_on_repeat': True,
+ 'page_repeat_secs': 60
+ }
+
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
edmundyan 2013/08/27 23:01:48 Done.
+class EndureGmailAltTwoLabels(test.Test):
+ test = endure.Endure
+ page_set = 'page_sets/gmail_alt_two_labels.json'
+ options = {
+ 'output_format': 'csv',
+ 'skip_navigate_on_repeat': True,
+ 'page_repeat_secs': 60
+ }
+
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
+class EndureGmailExpandCollapseConversation(test.Test):
+ test = endure.Endure
+ page_set = 'page_sets/gmail_expand_collapse_conversation.json'
+ options = {
+ 'output_format': 'csv',
+ 'skip_navigate_on_repeat': True,
+ 'page_repeat_secs': 60
+ }
+
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
+class EndurePlusAltPostsPhotos(test.Test):
+ test = endure.Endure
+ page_set = 'page_sets/plus_alt_posts_photos.json'
+ options = {
+ 'output_format': 'csv',
+ 'skip_navigate_on_repeat': True,
+ 'page_repeat_secs': 60
+ }
+

Powered by Google App Engine
This is Rietveld 408576698