| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'copy-tex-image-and-sub-image-2d.html', | 142 'copy-tex-image-and-sub-image-2d.html', |
| 143 ['win7', 'intel']) | 143 ['win7', 'intel']) |
| 144 | 144 |
| 145 # Win / AMD flakiness seen on new tryservers. | 145 # Win / AMD flakiness seen on new tryservers. |
| 146 # It's unfortunate that this suppression needs to be so broad, but | 146 # It's unfortunate that this suppression needs to be so broad, but |
| 147 # basically any test that uses readPixels is potentially flaky, and | 147 # basically any test that uses readPixels is potentially flaky, and |
| 148 # it's infeasible to suppress individual failures one by one. | 148 # it's infeasible to suppress individual failures one by one. |
| 149 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 149 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
| 150 | 150 |
| 151 # Win AMD failures | 151 # Win AMD failures |
| 152 # This test is probably flaky on all AMD, but only visible on the |
| 153 # new AMD (the whole test suite is flaky on the old config). |
| 154 self.Flaky('conformance/extensions/oes-texture-half-float.html', |
| 155 ['win', ('amd', 0x6613)], bug=653533) |
| 152 | 156 |
| 153 # Win / AMD D3D9 failures | 157 # Win / AMD D3D9 failures |
| 154 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 158 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 155 ['win', 'amd', 'd3d9'], bug=475095) | 159 ['win', 'amd', 'd3d9'], bug=475095) |
| 156 self.Fail('conformance/rendering/more-than-65536-indices.html', | 160 self.Fail('conformance/rendering/more-than-65536-indices.html', |
| 157 ['win', 'amd', 'd3d9'], bug=475095) | 161 ['win', 'amd', 'd3d9'], bug=475095) |
| 158 | 162 |
| 159 # Win / D3D9 failures | 163 # Win / D3D9 failures |
| 160 # Skipping these two tests because they're causing assertion failures. | 164 # Skipping these two tests because they're causing assertion failures. |
| 161 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', | 165 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html', |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 self.Fail('conformance/textures/misc/texture-npot.html', | 726 self.Fail('conformance/textures/misc/texture-npot.html', |
| 723 ['chromeos', ('intel', 0xa011)], bug=375554) | 727 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 724 self.Fail('conformance/textures/misc/texture-npot-video.html', | 728 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 725 ['chromeos', ('intel', 0xa011)], bug=375554) | 729 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 726 self.Fail('conformance/textures/misc/texture-size.html', | 730 self.Fail('conformance/textures/misc/texture-size.html', |
| 727 ['chromeos', ('intel', 0xa011)], bug=375554) | 731 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 728 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 732 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 729 ['chromeos', ('intel', 0xa011)], bug=375554) | 733 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 730 self.Skip('conformance/uniforms/uniform-default-values.html', | 734 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 731 ['chromeos', ('intel', 0xa011)], bug=375554) | 735 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |