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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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): Fix this. | 58 # TODO(jbauman): Fix this. |
59 self.Fail('Pixel_DirectComposition_Video_MP4', ['win', 'intel'], bug=704389) | 59 self.Fail('Pixel_DirectComposition_Video_MP4', ['win', 'intel'], bug=704389) |
| 60 |
| 61 # Failures on Haswell GPUs on macOS after upgrade to 10.12.4. |
| 62 self.Fail('Pixel_OffscreenCanvas2DResizeOnWorker', |
| 63 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 64 self.Fail('Pixel_OffscreenCanvasAccelerated2D', |
| 65 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 66 self.Fail('Pixel_OffscreenCanvasAccelerated2DWorker', |
| 67 ['mac', ('intel', 0x0a2e)], bug=718183) |
| 68 self.Fail('Pixel_WebGLGreenTriangle_NonChromiumImage_NoAA_NoAlpha', |
| 69 ['mac', ('intel', 0x0a2e)], bug=718183) |
OLD | NEW |