| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 self.Flaky('conformance/textures/misc/texture-upload-size.html', | 135 self.Flaky('conformance/textures/misc/texture-upload-size.html', |
| 136 ['win', 'nvidia'], bug=630860) | 136 ['win', 'nvidia'], bug=630860) |
| 137 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | 137 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', |
| 138 ['win', 'nvidia'], bug=672380) | 138 ['win', 'nvidia'], bug=672380) |
| 139 | 139 |
| 140 # Win7 / Intel failures | 140 # Win7 / Intel failures |
| 141 self.Fail('conformance/textures/misc/' + | 141 self.Fail('conformance/textures/misc/' + |
| 142 'copy-tex-image-and-sub-image-2d.html', | 142 'copy-tex-image-and-sub-image-2d.html', |
| 143 ['win7', 'intel', 'no_passthrough']) | 143 ['win7', 'intel', 'no_passthrough']) |
| 144 | 144 |
| 145 # Win / Intel failures |
| 146 self.Flaky('conformance/uniforms/gl-uniform-arrays.html', |
| 147 ['win', 'debug', 'intel'], bug=678382) |
| 148 |
| 145 # Win / AMD flakiness seen on new tryservers. | 149 # Win / AMD flakiness seen on new tryservers. |
| 146 # It's unfortunate that this suppression needs to be so broad, but | 150 # It's unfortunate that this suppression needs to be so broad, but |
| 147 # basically any test that uses readPixels is potentially flaky, and | 151 # basically any test that uses readPixels is potentially flaky, and |
| 148 # it's infeasible to suppress individual failures one by one. | 152 # it's infeasible to suppress individual failures one by one. |
| 149 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 153 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
| 150 | 154 |
| 151 # Win AMD failures | 155 # Win AMD failures |
| 152 # This test is probably flaky on all AMD, but only visible on the | 156 # 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). | 157 # new AMD (the whole test suite is flaky on the old config). |
| 154 # Mark as Fail since it often flakes in all 3 retries | 158 # Mark as Fail since it often flakes in all 3 retries |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 self.Fail('conformance/textures/misc/texture-npot.html', | 819 self.Fail('conformance/textures/misc/texture-npot.html', |
| 816 ['chromeos', ('intel', 0xa011)], bug=375554) | 820 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 817 self.Fail('conformance/textures/misc/texture-npot-video.html', | 821 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 818 ['chromeos', ('intel', 0xa011)], bug=375554) | 822 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 819 self.Fail('conformance/textures/misc/texture-size.html', | 823 self.Fail('conformance/textures/misc/texture-size.html', |
| 820 ['chromeos', ('intel', 0xa011)], bug=375554) | 824 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 821 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 825 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 822 ['chromeos', ('intel', 0xa011)], bug=375554) | 826 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 823 self.Skip('conformance/uniforms/uniform-default-values.html', | 827 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 824 ['chromeos', ('intel', 0xa011)], bug=375554) | 828 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |