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

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

Issue 103153002: Disable page_cycler.typical_25 on windows, and session_restore.cold.typical_25 on linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. Created 7 years 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 | tools/perf/benchmarks/session_restore.py » ('j') | 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 import sys
5
4 from telemetry import test 6 from telemetry import test
5 7
6 from measurements import page_cycler 8 from measurements import page_cycler
7 9
8 10
9 class PageCyclerBloat(test.Test): 11 class PageCyclerBloat(test.Test):
10 test = page_cycler.PageCycler 12 test = page_cycler.PageCycler
11 page_set = 'page_sets/page_cycler/bloat.json' 13 page_set = 'page_sets/page_cycler/bloat.json'
12 options = {'pageset_repeat_iters': 10} 14 options = {'pageset_repeat_iters': 10}
13 15
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 options = {'pageset_repeat_iters': 10} 98 options = {'pageset_repeat_iters': 10}
97 99
98 100
99 class PageCyclerToughLayoutCases(test.Test): 101 class PageCyclerToughLayoutCases(test.Test):
100 test = page_cycler.PageCycler 102 test = page_cycler.PageCycler
101 page_set = 'page_sets/tough_layout_cases.json' 103 page_set = 'page_sets/tough_layout_cases.json'
102 options = {'pageset_repeat_iters': 10} 104 options = {'pageset_repeat_iters': 10}
103 105
104 106
105 class PageCyclerTypical25(test.Test): 107 class PageCyclerTypical25(test.Test):
108 # crbug.com/273986: This test is really flakey on xp.
109 enabled = not sys.platform.startswith('win')
106 test = page_cycler.PageCycler 110 test = page_cycler.PageCycler
107 page_set = 'page_sets/typical_25.json' 111 page_set = 'page_sets/typical_25.json'
108 options = {'pageset_repeat_iters': 10} 112 options = {'pageset_repeat_iters': 10}
OLDNEW
« no previous file with comments | « no previous file | tools/perf/benchmarks/session_restore.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698