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

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

Issue 1680613003: Disable memory.top_10_mobile on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import re 5 import re
6 6
7 from core import perf_benchmark 7 from core import perf_benchmark
8 8
9 from telemetry import benchmark 9 from telemetry import benchmark
10 from telemetry.timeline import tracing_category_filter 10 from telemetry.timeline import tracing_category_filter
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 def Name(cls): 99 def Name(cls):
100 return 'memory.blink_memory_mobile' 100 return 'memory.blink_memory_mobile'
101 101
102 @classmethod 102 @classmethod
103 def ValueCanBeAddedPredicate(cls, value, is_first_result): 103 def ValueCanBeAddedPredicate(cls, value, is_first_result):
104 return bool(cls._RE_RENDERER_VALUES.match(value.name)) 104 return bool(cls._RE_RENDERER_VALUES.match(value.name))
105 105
106 106
107 # Disabled on reference builds because they don't support the new 107 # Disabled on reference builds because they don't support the new
108 # Tracing.requestMemoryDump DevTools API. See http://crbug.com/540022. 108 # Tracing.requestMemoryDump DevTools API. See http://crbug.com/540022.
109 @benchmark.Disabled('reference') 109 @benchmark.Disabled('reference',
110 'linux') # http://crbug.com/585161
110 class MemoryBenchmarkTop10Mobile(_MemoryInfra): 111 class MemoryBenchmarkTop10Mobile(_MemoryInfra):
111 """Timeline based benchmark for measuring memory on top 10 mobile sites.""" 112 """Timeline based benchmark for measuring memory on top 10 mobile sites."""
112 113
113 page_set = page_sets.MemoryInfraTop10MobilePageSet 114 page_set = page_sets.MemoryInfraTop10MobilePageSet
114 115
115 @classmethod 116 @classmethod
116 def Name(cls): 117 def Name(cls):
117 return 'memory.top_10_mobile' 118 return 'memory.top_10_mobile'
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698