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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 | 166 |
167 # WIN / D3D9 / Intel failures | 167 # WIN / D3D9 / Intel failures |
168 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 168 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
169 ['win', 'intel', 'd3d9'], bug=540538) | 169 ['win', 'intel', 'd3d9'], bug=540538) |
170 | 170 |
171 # WIN / OpenGL / NVIDIA failures | 171 # WIN / OpenGL / NVIDIA failures |
172 # Mark ANGLE's OpenGL as flaky on Windows Nvidia | 172 # Mark ANGLE's OpenGL as flaky on Windows Nvidia |
173 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) | 173 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) |
174 | 174 |
175 # Win / OpenGL / AMD failures | 175 # Win / OpenGL / AMD failures |
| 176 self.Fail('conformance/attribs/gl-bindAttribLocation-aliasing.html', |
| 177 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 178 self.Flaky('conformance/attribs/gl-bindAttribLocation-matrix.html', |
| 179 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 180 self.Flaky('conformance/attribs/gl-bindAttribLocation-repeated.html', |
| 181 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 182 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 183 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
176 self.Skip('conformance/glsl/misc/shader-struct-scope.html', | 184 self.Skip('conformance/glsl/misc/shader-struct-scope.html', |
177 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 185 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
178 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', | 186 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', |
179 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 187 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
180 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', | 188 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', |
181 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 189 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
182 self.Fail('conformance/rendering/clipping-wide-points.html', | 190 self.Fail('conformance/rendering/clipping-wide-points.html', |
183 ['win', 'amd', 'opengl'], bug=1506) # angle bug ID | 191 ['win', 'amd', 'opengl'], bug=1506) # angle bug ID |
184 | 192 |
185 # Mark ANGLE's OpenGL as flaky on Windows Amd | 193 # Mark ANGLE's OpenGL as flaky on Windows Amd |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 self.Fail('conformance/textures/misc/texture-npot.html', | 720 self.Fail('conformance/textures/misc/texture-npot.html', |
713 ['chromeos', ('intel', 0xa011)], bug=375554) | 721 ['chromeos', ('intel', 0xa011)], bug=375554) |
714 self.Fail('conformance/textures/misc/texture-npot-video.html', | 722 self.Fail('conformance/textures/misc/texture-npot-video.html', |
715 ['chromeos', ('intel', 0xa011)], bug=375554) | 723 ['chromeos', ('intel', 0xa011)], bug=375554) |
716 self.Fail('conformance/textures/misc/texture-size.html', | 724 self.Fail('conformance/textures/misc/texture-size.html', |
717 ['chromeos', ('intel', 0xa011)], bug=375554) | 725 ['chromeos', ('intel', 0xa011)], bug=375554) |
718 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 726 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
719 ['chromeos', ('intel', 0xa011)], bug=375554) | 727 ['chromeos', ('intel', 0xa011)], bug=375554) |
720 self.Skip('conformance/uniforms/uniform-default-values.html', | 728 self.Skip('conformance/uniforms/uniform-default-values.html', |
721 ['chromeos', ('intel', 0xa011)], bug=375554) | 729 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |