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

Side by Side Diff: tools/perf/benchmarks/page_cycler.py

Issue 196723004: Make the morejs page cycler measure cold times better. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from measurements import page_cycler 5 from measurements import page_cycler
6 from telemetry import test 6 from telemetry import test
7 7
8 8
9 class PageCyclerBloat(test.Test): 9 class PageCyclerBloat(test.Test):
10 test = page_cycler.PageCycler 10 test = page_cycler.PageCycler
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 class PageCyclerIntlKoThVi(test.Test): 46 class PageCyclerIntlKoThVi(test.Test):
47 test = page_cycler.PageCycler 47 test = page_cycler.PageCycler
48 page_set = 'page_sets/intl_ko_th_vi.json' 48 page_set = 'page_sets/intl_ko_th_vi.json'
49 options = {'pageset_repeat_iters': 10} 49 options = {'pageset_repeat_iters': 10}
50 50
51 51
52 class PageCyclerMorejs(test.Test): 52 class PageCyclerMorejs(test.Test):
53 test = page_cycler.PageCycler 53 test = page_cycler.PageCycler
54 page_set = 'page_sets/page_cycler/morejs.json' 54 page_set = 'page_sets/page_cycler/morejs.json'
55 options = {'pageset_repeat_iters': 10} 55 options = {'pageset_repeat_iters': 20,
56 'cold_load_percent': 50}
56 57
57 58
58 class PageCyclerMoz(test.Test): 59 class PageCyclerMoz(test.Test):
59 test = page_cycler.PageCycler 60 test = page_cycler.PageCycler
60 page_set = 'page_sets/page_cycler/moz.json' 61 page_set = 'page_sets/page_cycler/moz.json'
61 options = {'pageset_repeat_iters': 10} 62 options = {'pageset_repeat_iters': 10}
62 63
63 64
64 class PageCyclerNetsimTop10(test.Test): 65 class PageCyclerNetsimTop10(test.Test):
65 """Measures load time of the top 10 sites under simulated cable network.""" 66 """Measures load time of the top 10 sites under simulated cable network."""
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 options = {'pageset_repeat_iters': 10} 101 options = {'pageset_repeat_iters': 10}
101 102
102 103
103 # crbug.com/273986: This test is really flakey on xp. 104 # crbug.com/273986: This test is really flakey on xp.
104 # cabug.com/341843: This test is always timing out on Android. 105 # cabug.com/341843: This test is always timing out on Android.
105 @test.Disabled('android', 'win') 106 @test.Disabled('android', 'win')
106 class PageCyclerTypical25(test.Test): 107 class PageCyclerTypical25(test.Test):
107 test = page_cycler.PageCycler 108 test = page_cycler.PageCycler
108 page_set = 'page_sets/typical_25.json' 109 page_set = 'page_sets/typical_25.json'
109 options = {'pageset_repeat_iters': 10} 110 options = {'pageset_repeat_iters': 10}
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698