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

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

Issue 1985633003: [system-health] Disable system_health.memory_mobile.reference on Nexus 5X (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix syntax Created 4 years, 7 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/system_health.py
diff --git a/tools/perf/benchmarks/system_health.py b/tools/perf/benchmarks/system_health.py
index 687a86729200c991b84dabaa2c14f827c194f8b0..8a76a6f509467e320de5137690d38a1056559512 100644
--- a/tools/perf/benchmarks/system_health.py
+++ b/tools/perf/benchmarks/system_health.py
@@ -88,4 +88,7 @@ class MobileMemorySystemHealth(_MemorySystemHealthBenchmark):
@classmethod
def ShouldDisable(cls, possible_browser):
- return possible_browser.platform.GetDeviceTypeName() == 'Desktop'
+ # http://crbug.com/612144 (reference on Nexus 5X).
+ return possible_browser.platform.GetDeviceTypeName() == 'Desktop' or (
+ possible_browser.browser_type == 'reference' and
+ possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
« 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