Chromium Code Reviews| Index: tools/perf/benchmarks/smoothness.py |
| diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py |
| index f9702a7e020c22868bddc0113f1525724bdeb9ce..a57bd1580688e17a03eafe99a5aba8207dee2cd9 100644 |
| --- a/tools/perf/benchmarks/smoothness.py |
| +++ b/tools/perf/benchmarks/smoothness.py |
| @@ -321,7 +321,10 @@ class SmoothnessDesktopToughPinchZoomCases(_Smoothness): |
| return 'smoothness.desktop_tough_pinch_zoom_cases' |
| -@benchmark.Enabled('android') |
| +# This benchmark runs only on android by it is disabled on android as well |
| +# because of http://crbug.com/610021 |
| +# @benchmark.Enabled('android') |
| +@benchmark.Disabled |
|
nednguyen
2016/05/07 00:10:22
@benchmark.Disabled('all') I think
aiolos (Not reviewing)
2016/05/07 01:05:06
yep.
fmeawad
2016/05/07 01:43:23
Done.
|
| class SmoothnessGpuRasterizationToughPinchZoomCases(_Smoothness): |
| """Measures rendering statistics for pinch-zooming in the tough pinch zoom |
| cases with GPU rasterization. |
| @@ -435,6 +438,7 @@ class SmoothnessToughImageDecodeCases(_Smoothness): |
| return 'smoothness.tough_image_decode_cases' |
| +@benchmark.Disabled('android') # http://crbug.com/610015 |
| class SmoothnessImageDecodingCases(_Smoothness): |
| """Measures decoding statistics for jpeg images. |
| """ |