| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 # WIN / D3D9 / Intel failures | 182 # WIN / D3D9 / Intel failures |
| 183 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 183 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
| 184 ['win', 'intel', 'd3d9'], bug=540538) | 184 ['win', 'intel', 'd3d9'], bug=540538) |
| 185 | 185 |
| 186 # WIN / OpenGL / NVIDIA failures | 186 # WIN / OpenGL / NVIDIA failures |
| 187 # Mark ANGLE's OpenGL as flaky on Windows Nvidia | 187 # Mark ANGLE's OpenGL as flaky on Windows Nvidia |
| 188 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) | 188 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) |
| 189 | 189 |
| 190 # Win / OpenGL / AMD failures | 190 # Win / OpenGL / AMD failures |
| 191 self.Skip('conformance/attribs/gl-bindAttribLocation-aliasing.html', | 191 self.Skip('conformance/attribs/gl-bindAttribLocation-aliasing.html', |
| 192 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 192 ['win', 'amd', 'opengl'], bug=649824) |
| 193 self.Flaky('conformance/attribs/gl-bindAttribLocation-matrix.html', | 193 self.Flaky('conformance/attribs/gl-bindAttribLocation-matrix.html', |
| 194 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 194 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 195 self.Flaky('conformance/attribs/gl-bindAttribLocation-repeated.html', | 195 self.Flaky('conformance/attribs/gl-bindAttribLocation-repeated.html', |
| 196 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 196 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 197 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 197 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 198 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 198 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 199 self.Skip('conformance/glsl/misc/shader-struct-scope.html', | 199 self.Skip('conformance/glsl/misc/shader-struct-scope.html', |
| 200 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 200 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 201 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', | 201 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', |
| 202 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 202 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 self.Fail('conformance/textures/misc/texture-npot.html', | 729 self.Fail('conformance/textures/misc/texture-npot.html', |
| 730 ['chromeos', ('intel', 0xa011)], bug=375554) | 730 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 731 self.Fail('conformance/textures/misc/texture-npot-video.html', | 731 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 732 ['chromeos', ('intel', 0xa011)], bug=375554) | 732 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 733 self.Fail('conformance/textures/misc/texture-size.html', | 733 self.Fail('conformance/textures/misc/texture-size.html', |
| 734 ['chromeos', ('intel', 0xa011)], bug=375554) | 734 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 735 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 735 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 736 ['chromeos', ('intel', 0xa011)], bug=375554) | 736 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 737 self.Skip('conformance/uniforms/uniform-default-values.html', | 737 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 738 ['chromeos', ('intel', 0xa011)], bug=375554) | 738 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |