| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 # WIN / D3D9 / Intel failures | 175 # WIN / D3D9 / Intel failures |
| 176 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 176 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
| 177 ['win', 'intel', 'd3d9'], bug=540538) | 177 ['win', 'intel', 'd3d9'], bug=540538) |
| 178 | 178 |
| 179 # WIN / OpenGL / NVIDIA failures | 179 # WIN / OpenGL / NVIDIA failures |
| 180 # Mark ANGLE's OpenGL as flaky on Windows Nvidia | 180 # Mark ANGLE's OpenGL as flaky on Windows Nvidia |
| 181 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) | 181 self.Flaky('conformance/*', ['win', 'nvidia', 'opengl'], bug=582083) |
| 182 | 182 |
| 183 # Win / OpenGL / AMD failures | 183 # Win / OpenGL / AMD failures |
| 184 self.Fail('conformance/attribs/gl-bindAttribLocation-aliasing.html', | 184 self.Skip('conformance/attribs/gl-bindAttribLocation-aliasing.html', |
| 185 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 185 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 186 self.Flaky('conformance/attribs/gl-bindAttribLocation-matrix.html', | 186 self.Flaky('conformance/attribs/gl-bindAttribLocation-matrix.html', |
| 187 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 187 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 188 self.Flaky('conformance/attribs/gl-bindAttribLocation-repeated.html', | 188 self.Flaky('conformance/attribs/gl-bindAttribLocation-repeated.html', |
| 189 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 189 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 190 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 190 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 191 ['win', ('amd', 0x6779), 'opengl'], bug=649824) | 191 ['win', ('amd', 0x6779), 'opengl'], bug=649824) |
| 192 self.Skip('conformance/glsl/misc/shader-struct-scope.html', | 192 self.Skip('conformance/glsl/misc/shader-struct-scope.html', |
| 193 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID | 193 ['win', 'amd', 'opengl'], bug=1007) # angle bug ID |
| 194 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', | 194 self.Skip('conformance/glsl/misc/shaders-with-invariance.html', |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 self.Fail('conformance/textures/misc/texture-npot.html', | 722 self.Fail('conformance/textures/misc/texture-npot.html', |
| 723 ['chromeos', ('intel', 0xa011)], bug=375554) | 723 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 724 self.Fail('conformance/textures/misc/texture-npot-video.html', | 724 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 725 ['chromeos', ('intel', 0xa011)], bug=375554) | 725 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 726 self.Fail('conformance/textures/misc/texture-size.html', | 726 self.Fail('conformance/textures/misc/texture-size.html', |
| 727 ['chromeos', ('intel', 0xa011)], bug=375554) | 727 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 728 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 728 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 729 ['chromeos', ('intel', 0xa011)], bug=375554) | 729 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 730 self.Skip('conformance/uniforms/uniform-default-values.html', | 730 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 731 ['chromeos', ('intel', 0xa011)], bug=375554) | 731 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |