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

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

Issue 520683002: Re-reenable memory tests. Fixed sign-in issue. (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 | tools/perf/page_sets/data/mobile_memory.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.Disabled('android') # crbug.com/370977
11 class MemoryMobile(benchmark.Benchmark): 10 class MemoryMobile(benchmark.Benchmark):
12 test = memory.Memory 11 test = memory.Memory
13 page_set = page_sets.MobileMemoryPageSet 12 page_set = page_sets.MobileMemoryPageSet
14 13
15 14
16 @benchmark.Disabled('android') 15 @benchmark.Disabled('android')
17 class MemoryTop25(benchmark.Benchmark): 16 class MemoryTop25(benchmark.Benchmark):
18 test = memory.Memory 17 test = memory.Memory
19 page_set = page_sets.Top25PageSet 18 page_set = page_sets.Top25PageSet
20 19
21 20
22 @benchmark.Disabled('android') 21 @benchmark.Disabled('android')
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.Top2012Q3PageSet 25 page_set = page_sets.Top2012Q3PageSet
27 26
28 27
29 @benchmark.Disabled('android') # crbug.com/371153 28 @benchmark.Disabled('android') # 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
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/data/mobile_memory.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698