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

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

Issue 2649323008: Disable smoothness.pathological_mobile_sites on Android Nexus7v2 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/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index 21ea4eef80a9bf892c933397ebfdf4fb270bed47..c09d3459c2a156ae905703782734065cdaf9d0d6 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -451,6 +451,13 @@ class SmoothnessPathologicalMobileSites(_Smoothness):
def Name(cls):
return 'smoothness.pathological_mobile_sites'
+ @classmethod
+ def ShouldDisable(cls, possible_browser):
+ # http://crbug.com/685342
+ if possible_browser.platform.GetDeviceTypeName() == 'Nexus 7':
+ return True
+ return False
+
class SmoothnessToughTextureUploadCases(_Smoothness):
page_set = page_sets.ToughTextureUploadCasesPageSet
« 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