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

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

Issue 337603005: Rename telemetry.test.Test to telemetry.benchmark.Benchmark. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/memory_pressure.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 test 4 from telemetry import benchmark
5 5
6 from measurements import memory 6 from measurements import memory
7 import page_sets 7 import page_sets
8 8
9 9
10 @test.Disabled('android') # crbug.com/370977 10 @benchmark.Disabled('android') # crbug.com/370977
11 class MemoryMobile(test.Test): 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 class MemoryTop25(test.Test): 16 class MemoryTop25(benchmark.Benchmark):
17 test = memory.Memory 17 test = memory.Memory
18 page_set = page_sets.Top25PageSet 18 page_set = page_sets.Top25PageSet
19 19
20 20
21 class Reload2012Q3(test.Test): 21 class Reload2012Q3(benchmark.Benchmark):
22 tag = 'reload' 22 tag = 'reload'
23 test = memory.Memory 23 test = memory.Memory
24 page_set = page_sets.Top2012Q3PageSet 24 page_set = page_sets.Top2012Q3PageSet
25 25
26 26
27 @test.Disabled('android') # crbug.com/371153 27 @benchmark.Disabled('android') # crbug.com/371153
28 class MemoryToughDomMemoryCases(test.Test): 28 class MemoryToughDomMemoryCases(benchmark.Benchmark):
29 test = memory.Memory 29 test = memory.Memory
30 page_set = page_sets.ToughDomMemoryCasesPageSet 30 page_set = page_sets.ToughDomMemoryCasesPageSet
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/memory_pressure.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698