diff options
author | petrcermak <petrcermak@chromium.org> | 2015-12-01 06:25:37 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-01 14:26:29 +0000 |
commit | 47d26b06b332f059caf0c4e93c4d8dd4b1ef320f (patch) | |
tree | f5bd8af871fa9e29c5187466df17b671366d4c3d /tools/perf/benchmarks/smoothness.py | |
parent | 51e8ed5ee120aa410df9971a131aef64d055790a (diff) | |
download | chromium_src-47d26b06b332f059caf0c4e93c4d8dd4b1ef320f.zip chromium_src-47d26b06b332f059caf0c4e93c4d8dd4b1ef320f.tar.gz chromium_src-47d26b06b332f059caf0c4e93c4d8dd4b1ef320f.tar.bz2 |
Disable smoothness[.gpu_rasterization].tough_pinch_zoom_cases benchmark on Android Svelte
The benchmark is failing on downstream Android Svelte bots.
NOTRY=true
TBR=bokan@chromium.org
BUG=564008
CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_10_10_perf_bisect;tryserver.chromium.perf:win_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect
Review URL: https://codereview.chromium.org/1482253004
Cr-Commit-Position: refs/heads/master@{#362413}
Diffstat (limited to 'tools/perf/benchmarks/smoothness.py')
-rw-r--r-- | tools/perf/benchmarks/smoothness.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py index a8626b6..5be0ee8 100644 --- a/tools/perf/benchmarks/smoothness.py +++ b/tools/perf/benchmarks/smoothness.py @@ -273,6 +273,10 @@ class SmoothnessToughPinchZoomCases(_Smoothness): def Name(cls): return 'smoothness.tough_pinch_zoom_cases' + @classmethod + def ShouldDisable(cls, possible_browser): + return cls.IsSvelte(possible_browser) # http://crbug.com/564008 + @benchmark.Enabled('chromeos', 'mac') class SmoothnessDesktopToughPinchZoomCases(_Smoothness): @@ -302,6 +306,10 @@ class SmoothnessGpuRasterizationToughPinchZoomCases(_Smoothness): def Name(cls): return 'smoothness.gpu_rasterization.tough_pinch_zoom_cases' + @classmethod + def ShouldDisable(cls, possible_browser): + return cls.IsSvelte(possible_browser) # http://crbug.com/564008 + @benchmark.Enabled('chromeos', 'mac') class SmoothnessGpuRasterizationDesktopToughPinchZoomCases(_Smoothness): |