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

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

Issue 312883002: Enable the page_set of benchmark test file to use actual page set object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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/telemetry/telemetry/test.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 from telemetry import test 4 from telemetry import test
5 5
6 from measurements import memory 6 from measurements import memory
7 from page_sets import mobile_memory
8 from page_sets import top_25
9 from page_sets import top_desktop_sites_2012Q3
10 from page_sets import tough_dom_memory_cases
7 11
8 12
9 @test.Disabled('android') # crbug.com/370977 13 @test.Disabled('android') # crbug.com/370977
10 class MemoryMobile(test.Test): 14 class MemoryMobile(test.Test):
11 test = memory.Memory 15 test = memory.Memory
12 page_set = 'page_sets/mobile_memory.py' 16 page_set = mobile_memory.MobileMemoryPageSet()
13 17
14 18
15 class MemoryTop25(test.Test): 19 class MemoryTop25(test.Test):
16 test = memory.Memory 20 test = memory.Memory
17 page_set = 'page_sets/top_25.py' 21 page_set = top_25.Top25PageSet()
18 22
19 23
20 class Reload2012Q3(test.Test): 24 class Reload2012Q3(test.Test):
21 tag = 'reload' 25 tag = 'reload'
22 test = memory.Memory 26 test = memory.Memory
23 page_set = 'page_sets/top_desktop_sites_2012Q3.py' 27 page_set = top_desktop_sites_2012Q3.Top2012Q3PageSet()
24 28
25 29
26 @test.Disabled('android') # crbug.com/371153 30 @test.Disabled('android') # crbug.com/371153
27 class MemoryToughDomMemoryCases(test.Test): 31 class MemoryToughDomMemoryCases(test.Test):
28 test = memory.Memory 32 test = memory.Memory
29 page_set = 'page_sets/tough_dom_memory_cases.py' 33 page_set = tough_dom_memory_cases.ToughDomMemoryCasesPageSet()
OLDNEW
« no previous file with comments | « no previous file | tools/telemetry/telemetry/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698