| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 self.Fail('conformance/programs/program-test.html', | 282 self.Fail('conformance/programs/program-test.html', |
| 283 ['win', 'passthrough', 'd3d11'], bug=602688) | 283 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 284 self.Fail('conformance/reading/read-pixels-test.html', | 284 self.Fail('conformance/reading/read-pixels-test.html', |
| 285 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 285 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 286 self.Fail('conformance/renderbuffers/feedback-loop.html', | 286 self.Fail('conformance/renderbuffers/feedback-loop.html', |
| 287 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 287 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 288 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 288 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 289 ['win', 'passthrough', 'd3d11'], bug=602688) | 289 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 290 self.Fail('conformance/renderbuffers/framebuffer-test.html', | 290 self.Fail('conformance/renderbuffers/framebuffer-test.html', |
| 291 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 291 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 292 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
| 293 ['win', 'passthrough', 'd3d11'], bug=1635) # angle bug ID |
| 292 self.Fail('conformance/rendering/draw-arrays-out-of-bounds.html', | 294 self.Fail('conformance/rendering/draw-arrays-out-of-bounds.html', |
| 293 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 295 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 294 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html', | 296 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html', |
| 295 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 297 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 296 self.Fail('conformance/textures/misc/copy-tex-image-2d-formats.html', | 298 self.Fail('conformance/textures/misc/copy-tex-image-2d-formats.html', |
| 297 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 299 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 298 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html', | 300 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html', |
| 299 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 301 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 300 self.Fail('conformance/textures/misc/mipmap-fbo.html', | 302 self.Fail('conformance/textures/misc/mipmap-fbo.html', |
| 301 ['win', 'passthrough', 'd3d11'], bug=665518) | 303 ['win', 'passthrough', 'd3d11'], bug=665518) |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 self.Fail('conformance/textures/misc/texture-npot.html', | 817 self.Fail('conformance/textures/misc/texture-npot.html', |
| 816 ['chromeos', ('intel', 0xa011)], bug=375554) | 818 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 817 self.Fail('conformance/textures/misc/texture-npot-video.html', | 819 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 818 ['chromeos', ('intel', 0xa011)], bug=375554) | 820 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 819 self.Fail('conformance/textures/misc/texture-size.html', | 821 self.Fail('conformance/textures/misc/texture-size.html', |
| 820 ['chromeos', ('intel', 0xa011)], bug=375554) | 822 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 821 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 823 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 822 ['chromeos', ('intel', 0xa011)], bug=375554) | 824 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 823 self.Skip('conformance/uniforms/uniform-default-values.html', | 825 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 824 ['chromeos', ('intel', 0xa011)], bug=375554) | 826 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |