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

Unified Diff: tools/perf/benchmarks/memory_infra.py

Issue 2215783002: [perf] Disable memory.blink_memory_mobile.reference on Nexus 5X (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable only on Nexus 5X Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/memory_infra.py
diff --git a/tools/perf/benchmarks/memory_infra.py b/tools/perf/benchmarks/memory_infra.py
index f371f44d753891d4a7a0518b7b33f69f8c532e16..11947a67545647746270a5553acb1ff20bd319b3 100644
--- a/tools/perf/benchmarks/memory_infra.py
+++ b/tools/perf/benchmarks/memory_infra.py
@@ -165,6 +165,12 @@ class RendererMemoryBlinkMemoryMobile(_MemoryInfra):
return (not _IGNORED_STATS_RE.search(value.name) and
'renderer_processes' in value.name)
+ @classmethod
+ def ShouldDisable(cls, possible_browser):
+ # http://crbug.com/634319
+ return (possible_browser.browser_type == 'reference' and
+ possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
+
class _MemoryV8Benchmark(_MemoryInfra):
« 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