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

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

Issue 537093003: Revert of [Telemetry] Re-enable page_cycler.typical_25 on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 import page_sets 6 import page_sets
7 from telemetry import benchmark 7 from telemetry import benchmark
8 8
9 9
10 class PageCyclerBloat(benchmark.Benchmark): 10 class PageCyclerBloat(benchmark.Benchmark):
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 options = {'pageset_repeat': 10} 98 options = {'pageset_repeat': 10}
99 99
100 100
101 @benchmark.Disabled('android') # crbug.com/357326 101 @benchmark.Disabled('android') # crbug.com/357326
102 class PageCyclerToughLayoutCases(benchmark.Benchmark): 102 class PageCyclerToughLayoutCases(benchmark.Benchmark):
103 test = page_cycler.PageCycler 103 test = page_cycler.PageCycler
104 page_set = page_sets.ToughLayoutCasesPageSet 104 page_set = page_sets.ToughLayoutCasesPageSet
105 options = {'pageset_repeat': 10} 105 options = {'pageset_repeat': 10}
106 106
107 107
108 # crbug.com/273986: This test is really flakey on xp.
108 # cabug.com/341843: This test is always timing out on Android. 109 # cabug.com/341843: This test is always timing out on Android.
109 @benchmark.Disabled('android') 110 @benchmark.Disabled('android', 'win')
110 class PageCyclerTypical25(benchmark.Benchmark): 111 class PageCyclerTypical25(benchmark.Benchmark):
111 test = page_cycler.PageCycler 112 test = page_cycler.PageCycler
112 page_set = page_sets.Typical25PageSet 113 page_set = page_sets.Typical25PageSet
113 options = {'pageset_repeat': 10} 114 options = {'pageset_repeat': 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