| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 5 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 6 | 6 |
| 7 # See the GpuTestExpectations class for documentation. | 7 # See the GpuTestExpectations class for documentation. |
| 8 | 8 |
| 9 class PixelExpectations(GpuTestExpectations): | 9 class PixelExpectations(GpuTestExpectations): |
| 10 def SetExpectations(self): | 10 def SetExpectations(self): |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 bug=660461) | 54 bug=660461) |
| 55 | 55 |
| 56 self.Flaky('Pixel_OffscreenCanvas2DResizeOnWorker', | 56 self.Flaky('Pixel_OffscreenCanvas2DResizeOnWorker', |
| 57 ['win10', ('intel', 0x1912)], bug=690663) | 57 ['win10', ('intel', 0x1912)], bug=690663) |
| 58 | 58 |
| 59 # TODO(jbauman): Times out on Linux NVIDIA. | 59 # TODO(jbauman): Times out on Linux NVIDIA. |
| 60 self.Fail('Pixel_Video_VP9', ['linux', 'nvidia'], bug=704389) | 60 self.Fail('Pixel_Video_VP9', ['linux', 'nvidia'], bug=704389) |
| 61 # TODO(jbauman): Times out on Pixel C. | 61 # TODO(jbauman): Times out on Pixel C. |
| 62 self.Fail('Pixel_Video_VP9', ['android', 'nvidia'], bug=704389) | 62 self.Fail('Pixel_Video_VP9', ['android', 'nvidia'], bug=704389) |
| 63 | 63 |
| 64 # TODO(jbauman): Re-enable when references images created. |
| 65 self.Fail('Pixel_DirectComposition_Video_*', ['win'], bug=704389) |
| 66 |
| 64 # TODO(xlai): Remove this after test dimension is shrunk | 67 # TODO(xlai): Remove this after test dimension is shrunk |
| 65 # Intended to skip only Nexus 5 | 68 # Intended to skip only Nexus 5 |
| 66 self.Skip('Pixel_OffscreenCanvasAccelerated2D', | 69 self.Skip('Pixel_OffscreenCanvasAccelerated2D', |
| 67 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 70 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| 68 self.Skip('Pixel_OffscreenCanvasAccelerated2DWorker', | 71 self.Skip('Pixel_OffscreenCanvasAccelerated2DWorker', |
| 69 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 72 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| 70 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositing', | 73 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositing', |
| 71 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 74 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| 72 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositingWorker', | 75 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositingWorker', |
| 73 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 76 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| 74 self.Skip('Pixel_OffscreenCanvasWebGLDefault', | 77 self.Skip('Pixel_OffscreenCanvasWebGLDefault', |
| 75 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 78 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| 76 self.Skip('Pixel_OffscreenCanvasWebGLDefaultWorker', | 79 self.Skip('Pixel_OffscreenCanvasWebGLDefaultWorker', |
| 77 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) | 80 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=706647) |
| OLD | NEW |