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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 # Win / OpenGL / AMD failures | 175 # Win / OpenGL / AMD failures |
176 self.Skip('conformance/glsl/misc/shader-struct-scope.html', | 176 self.Skip('conformance/glsl/misc/shader-struct-scope.html', |
177 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 177 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
178 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', | 178 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', |
179 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 179 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
180 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', | 180 self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', |
181 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 181 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
182 self.Fail('conformance/rendering/clipping-wide-points.html', | 182 self.Fail('conformance/rendering/clipping-wide-points.html', |
183 ['win', 'amd', 'opengl'], bug=1506) # angle bug ID | 183 ['win', 'amd', 'opengl'], bug=1506) # angle bug ID |
184 | 184 |
| 185 # Mark ANGLE's OpenGL as flaky on Windows Amd |
| 186 self.Flaky('conformance/*', ['win', 'amd', 'opengl'], bug=582083) |
| 187 |
185 # Win / OpenGL / Intel failures | 188 # Win / OpenGL / Intel failures |
186 self.Fail('conformance/glsl/functions/glsl-function-normalize.html', | 189 self.Fail('conformance/glsl/functions/glsl-function-normalize.html', |
187 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 190 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
188 self.Fail('conformance/glsl/misc/shader-struct-scope.html', | 191 self.Fail('conformance/glsl/misc/shader-struct-scope.html', |
189 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 192 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
190 self.Fail('conformance/uniforms/uniform-default-values.html', | 193 self.Fail('conformance/uniforms/uniform-default-values.html', |
191 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 194 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
192 | 195 |
193 # Mac failures | 196 # Mac failures |
194 # La la la la la la la la ... | 197 # La la la la la la la la ... |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 self.Fail('conformance/textures/misc/texture-npot.html', | 710 self.Fail('conformance/textures/misc/texture-npot.html', |
708 ['chromeos', ('intel', 0xa011)], bug=375554) | 711 ['chromeos', ('intel', 0xa011)], bug=375554) |
709 self.Fail('conformance/textures/misc/texture-npot-video.html', | 712 self.Fail('conformance/textures/misc/texture-npot-video.html', |
710 ['chromeos', ('intel', 0xa011)], bug=375554) | 713 ['chromeos', ('intel', 0xa011)], bug=375554) |
711 self.Fail('conformance/textures/misc/texture-size.html', | 714 self.Fail('conformance/textures/misc/texture-size.html', |
712 ['chromeos', ('intel', 0xa011)], bug=375554) | 715 ['chromeos', ('intel', 0xa011)], bug=375554) |
713 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 716 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
714 ['chromeos', ('intel', 0xa011)], bug=375554) | 717 ['chromeos', ('intel', 0xa011)], bug=375554) |
715 self.Skip('conformance/uniforms/uniform-default-values.html', | 718 self.Skip('conformance/uniforms/uniform-default-values.html', |
716 ['chromeos', ('intel', 0xa011)], bug=375554) | 719 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |