| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 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). | 153 # new AMD (the whole test suite is flaky on the old config). |
| 154 self.Flaky('conformance/extensions/oes-texture-half-float.html', | 154 # Mark as Fail since it often flakes in all 3 retries |
| 155 self.Fail('conformance/extensions/oes-texture-half-float.html', |
| 155 ['win', ('amd', 0x6613)], bug=653533) | 156 ['win', ('amd', 0x6613)], bug=653533) |
| 156 | 157 |
| 157 # Win / AMD D3D9 failures | 158 # Win / AMD D3D9 failures |
| 158 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 159 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 159 ['win', 'amd', 'd3d9'], bug=475095) | 160 ['win', 'amd', 'd3d9'], bug=475095) |
| 160 self.Fail('conformance/rendering/more-than-65536-indices.html', | 161 self.Fail('conformance/rendering/more-than-65536-indices.html', |
| 161 ['win', 'amd', 'd3d9'], bug=475095) | 162 ['win', 'amd', 'd3d9'], bug=475095) |
| 162 | 163 |
| 163 # Win / D3D9 failures | 164 # Win / D3D9 failures |
| 164 # Skipping these two tests because they're causing assertion failures. | 165 # Skipping these two tests because they're causing assertion failures. |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 self.Fail('conformance/textures/misc/texture-npot.html', | 727 self.Fail('conformance/textures/misc/texture-npot.html', |
| 727 ['chromeos', ('intel', 0xa011)], bug=375554) | 728 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 728 self.Fail('conformance/textures/misc/texture-npot-video.html', | 729 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 729 ['chromeos', ('intel', 0xa011)], bug=375554) | 730 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 730 self.Fail('conformance/textures/misc/texture-size.html', | 731 self.Fail('conformance/textures/misc/texture-size.html', |
| 731 ['chromeos', ('intel', 0xa011)], bug=375554) | 732 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 732 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 733 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 733 ['chromeos', ('intel', 0xa011)], bug=375554) | 734 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 734 self.Skip('conformance/uniforms/uniform-default-values.html', | 735 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 735 ['chromeos', ('intel', 0xa011)], bug=375554) | 736 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |