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

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

Issue 793983003: Rewrite broken Facebook test case in top_7_stress (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add top_7_stress.json instead of changing top_25.json Created 6 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/page_sets/data/top_7_stress.json » ('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 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 memory 5 from measurements import memory
6 import page_sets 6 import page_sets
7 from telemetry import benchmark 7 from telemetry import benchmark
8 8
9 9
10 @benchmark.Enabled('android') 10 @benchmark.Enabled('android')
11 class MemoryMobile(benchmark.Benchmark): 11 class MemoryMobile(benchmark.Benchmark):
12 test = memory.Memory 12 test = memory.Memory
13 page_set = page_sets.MobileMemoryPageSet 13 page_set = page_sets.MobileMemoryPageSet
14 14
15 15
16 @benchmark.Disabled
17 class MemoryTop7Stress(benchmark.Benchmark): 16 class MemoryTop7Stress(benchmark.Benchmark):
18 test = memory.Memory 17 test = memory.Memory
19 page_set = page_sets.Top7StressPageSet 18 page_set = page_sets.Top7StressPageSet
20 19
21 20
22 @benchmark.Disabled 21 @benchmark.Disabled
23 class Reload2012Q3(benchmark.Benchmark): 22 class Reload2012Q3(benchmark.Benchmark):
24 tag = 'reload' 23 tag = 'reload'
25 test = memory.Memory 24 test = memory.Memory
26 page_set = page_sets.Top2012Q3StressPageSet 25 page_set = page_sets.Top2012Q3StressPageSet
27 26
28 27
29 @benchmark.Disabled # crbug.com/371153 28 @benchmark.Disabled # crbug.com/371153
30 class MemoryToughDomMemoryCases(benchmark.Benchmark): 29 class MemoryToughDomMemoryCases(benchmark.Benchmark):
31 test = memory.Memory 30 test = memory.Memory
32 page_set = page_sets.ToughDomMemoryCasesPageSet 31 page_set = page_sets.ToughDomMemoryCasesPageSet
33 32
34 33
35 @benchmark.Disabled('chromeos', 'linux', 'mac', 'win') 34 @benchmark.Disabled('chromeos', 'linux', 'mac', 'win')
36 @benchmark.Enabled('has tabs') 35 @benchmark.Enabled('has tabs')
37 class TypicalMobileSites(benchmark.Benchmark): 36 class TypicalMobileSites(benchmark.Benchmark):
38 """Long memory test.""" 37 """Long memory test."""
39 test = memory.Memory 38 test = memory.Memory
40 page_set = page_sets.TypicalMobileSitesPageSet 39 page_set = page_sets.TypicalMobileSitesPageSet
41 options = {'pageset_repeat': 15} 40 options = {'pageset_repeat': 15}
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/data/top_7_stress.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698