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

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

Issue 335923007: [Telemetry] Make our Enabled/Disabled annotations match what the bots run. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yar (yet another rebase) Created 6 years, 5 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 | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/peacekeeper.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 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 from telemetry import benchmark
5 4
6 from measurements import memory 5 from measurements import memory
7 import page_sets 6 import page_sets
7 from telemetry import benchmark
8 8
9 9
10 @benchmark.Disabled('android') # crbug.com/370977 10 @benchmark.Disabled('android') # crbug.com/370977
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('android')
16 class MemoryTop25(benchmark.Benchmark): 17 class MemoryTop25(benchmark.Benchmark):
17 test = memory.Memory 18 test = memory.Memory
18 page_set = page_sets.Top25PageSet 19 page_set = page_sets.Top25PageSet
19 20
20 21
22 @benchmark.Disabled('android')
21 class Reload2012Q3(benchmark.Benchmark): 23 class Reload2012Q3(benchmark.Benchmark):
22 tag = 'reload' 24 tag = 'reload'
23 test = memory.Memory 25 test = memory.Memory
24 page_set = page_sets.Top2012Q3PageSet 26 page_set = page_sets.Top2012Q3PageSet
25 27
26 28
27 @benchmark.Disabled('android') # crbug.com/371153 29 @benchmark.Disabled('android') # crbug.com/371153
28 class MemoryToughDomMemoryCases(benchmark.Benchmark): 30 class MemoryToughDomMemoryCases(benchmark.Benchmark):
29 test = memory.Memory 31 test = memory.Memory
30 page_set = page_sets.ToughDomMemoryCasesPageSet 32 page_set = page_sets.ToughDomMemoryCasesPageSet
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/peacekeeper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698