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

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

Issue 2658653004: Disable v8.detached_context_age_in_gc on Android Nexus 9 Perf bot (Closed)
Patch Set: Created 3 years, 11 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/v8.py
diff --git a/tools/perf/benchmarks/v8.py b/tools/perf/benchmarks/v8.py
index 00a3f06a0a5616cf705a36e0658446be8959e1f0..6cfdc1e300790ad7af573665ca2f8d16f4b020c0 100644
--- a/tools/perf/benchmarks/v8.py
+++ b/tools/perf/benchmarks/v8.py
@@ -76,6 +76,13 @@ class V8DetachedContextAgeInGC(perf_benchmark.PerfBenchmark):
def Name(cls):
return 'v8.detached_context_age_in_gc'
+ @classmethod
+ def ShouldDisable(cls, possible_browser):
+ # http://crbug.com/685350
+ if possible_browser.platform.GetDeviceTypeName() == 'Nexus 9':
+ return True
+ return False
+
class _InfiniteScrollBenchmark(perf_benchmark.PerfBenchmark):
""" Base class for infinite scroll benchmarks.
« 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