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

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

Issue 2100403003: Disable smoothness.tough_filters_cases on Nexus 6. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 fb2d488c279fe8c1bea576214780aee025586de3..3a82f439c95dfa9b57cdaf4e35be83b38575bbb6 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -66,9 +66,15 @@ class SmoothnessToughFiltersCases(_Smoothness):
return 'smoothness.tough_filters_cases'
@classmethod
- def ShouldDisable(cls, possible_browser): # http://crbug.com/616520
- return (cls.IsSvelte(possible_browser) and
- possible_browser.browser_type == 'reference')
+ def ShouldDisable(cls, possible_browser):
+ # http://crbug.com/616520
+ if (cls.IsSvelte(possible_browser) and
+ possible_browser.browser_type == 'reference'):
+ return True
+ # http://crbug.com/624032
+ if possible_browser.platform.GetDeviceTypeName() == 'Nexus 6':
+ return True
+ return False
class SmoothnessToughPathRenderingCases(_Smoothness):
« 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