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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from telemetry import test
6
7 from measurements import endure
8
9
10 class EndureCalendarForwardBackward(test.Test):
11 test = endure.Endure
12 page_set = 'page_sets/calendar_forward_backward.json'
13 options = {
14 'output_format': 'csv',
tonyg 2013/08/27 01:23:02 Why are we using csv for these?
15 'skip_navigate_on_repeat': True,
16 'page_repeat_secs': 60
17 }
18
19
20 class EndureGmailAltThreadlistConversation(test.Test):
21 test = endure.Endure
22 page_set = 'page_sets/gmail_alt_threadlist_conversation.json'
23 options = {
24 'output_format': 'csv',
25 'skip_navigate_on_repeat': True,
26 'page_repeat_secs': 60
27 }
28
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
edmundyan 2013/08/27 23:01:48 Done.
29 class EndureGmailAltTwoLabels(test.Test):
30 test = endure.Endure
31 page_set = 'page_sets/gmail_alt_two_labels.json'
32 options = {
33 'output_format': 'csv',
34 'skip_navigate_on_repeat': True,
35 'page_repeat_secs': 60
36 }
37
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
38 class EndureGmailExpandCollapseConversation(test.Test):
39 test = endure.Endure
40 page_set = 'page_sets/gmail_expand_collapse_conversation.json'
41 options = {
42 'output_format': 'csv',
43 'skip_navigate_on_repeat': True,
44 'page_repeat_secs': 60
45 }
46
dennis_jeffrey 2013/08/27 20:02:35 add 1 more blank line here
47 class EndurePlusAltPostsPhotos(test.Test):
48 test = endure.Endure
49 page_set = 'page_sets/plus_alt_posts_photos.json'
50 options = {
51 'output_format': 'csv',
52 'skip_navigate_on_repeat': True,
53 'page_repeat_secs': 60
54 }
55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698