| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 # further. | 48 # further. |
| 49 self.Flaky('Pixel_ScissorTestWithPreserveDrawingBuffer', ['mac'], | 49 self.Flaky('Pixel_ScissorTestWithPreserveDrawingBuffer', ['mac'], |
| 50 bug=660461) | 50 bug=660461) |
| 51 | 51 |
| 52 self.Flaky('Pixel_OffscreenCanvas2DResizeOnWorker', | 52 self.Flaky('Pixel_OffscreenCanvas2DResizeOnWorker', |
| 53 ['win10', ('intel', 0x1912)], bug=690663) | 53 ['win10', ('intel', 0x1912)], bug=690663) |
| 54 | 54 |
| 55 # TODO(zakerinasab): check / generate reference images. | 55 # TODO(zakerinasab): check / generate reference images. |
| 56 self.Fail('Pixel_Canvas2DUntagged', bug=713632) | 56 self.Fail('Pixel_Canvas2DUntagged', bug=713632) |
| 57 | 57 |
| 58 # TODO(jbauman): Remove when new baseline exists. | |
| 59 self.Fail('Pixel_DirectComposition_Video_MP4', bug=704389) | |
| 60 | |
| 61 # Failures on Haswell GPUs on macOS after upgrade to 10.12.4. | 58 # Failures on Haswell GPUs on macOS after upgrade to 10.12.4. |
| 62 self.Fail('Pixel_OffscreenCanvas2DResizeOnWorker', | 59 self.Fail('Pixel_OffscreenCanvas2DResizeOnWorker', |
| 63 ['mac', ('intel', 0x0a2e)], bug=718183) | 60 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 64 self.Fail('Pixel_OffscreenCanvasAccelerated2D', | 61 self.Fail('Pixel_OffscreenCanvasAccelerated2D', |
| 65 ['mac', ('intel', 0x0a2e)], bug=718183) | 62 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 66 self.Fail('Pixel_OffscreenCanvasAccelerated2DWorker', | 63 self.Fail('Pixel_OffscreenCanvasAccelerated2DWorker', |
| 67 ['mac', ('intel', 0x0a2e)], bug=718183) | 64 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 68 self.Fail('Pixel_WebGLGreenTriangle_NonChromiumImage_NoAA_NoAlpha', | 65 self.Fail('Pixel_WebGLGreenTriangle_NonChromiumImage_NoAA_NoAlpha', |
| 69 ['mac', ('intel', 0x0a2e)], bug=718183) | 66 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 70 | 67 |
| 71 self.Flaky('Pixel_OffscreenCanvasTransferBeforeStyleResize', | 68 self.Flaky('Pixel_OffscreenCanvasTransferBeforeStyleResize', |
| 72 ['mac', 'linux', 'win', 'android'], bug=720188) | 69 ['mac', 'linux', 'win', 'android'], bug=720188) |
| 73 self.Flaky('Pixel_OffscreenCanvasTransferAfterStyleResize', | 70 self.Flaky('Pixel_OffscreenCanvasTransferAfterStyleResize', |
| 74 ['mac', 'linux', 'win', 'android'], bug=719144) | 71 ['mac', 'linux', 'win', 'android'], bug=719144) |
| OLD | NEW |