| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 self.Fail('conformance/programs/get-active-test.html', | 307 self.Fail('conformance/programs/get-active-test.html', |
| 308 ['win', 'passthrough', 'd3d11'], bug=602688) | 308 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 309 self.Fail('conformance/programs/program-test.html', | 309 self.Fail('conformance/programs/program-test.html', |
| 310 ['win', 'passthrough', 'd3d11'], bug=602688) | 310 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 311 self.Fail('conformance/reading/read-pixels-test.html', | 311 self.Fail('conformance/reading/read-pixels-test.html', |
| 312 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 312 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 313 self.Fail('conformance/renderbuffers/feedback-loop.html', | 313 self.Fail('conformance/renderbuffers/feedback-loop.html', |
| 314 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 314 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 315 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', | 315 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', |
| 316 ['win', 'passthrough', 'd3d11'], bug=602688) | 316 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 317 self.Fail('conformance/renderbuffers/framebuffer-state-restoration.html', |
| 318 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 317 self.Fail('conformance/renderbuffers/framebuffer-test.html', | 319 self.Fail('conformance/renderbuffers/framebuffer-test.html', |
| 318 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 320 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 319 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', | 321 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
| 320 ['win', 'passthrough', 'd3d11'], bug=1635) # angle bug ID | 322 ['win', 'passthrough', 'd3d11'], bug=1635) # angle bug ID |
| 321 self.Fail('conformance/rendering/draw-arrays-out-of-bounds.html', | 323 self.Fail('conformance/rendering/draw-arrays-out-of-bounds.html', |
| 322 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 324 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 323 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html', | 325 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html', |
| 324 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 326 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 325 self.Fail('conformance/textures/misc/copy-tex-image-2d-formats.html', | 327 self.Fail('conformance/textures/misc/copy-tex-image-2d-formats.html', |
| 326 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 328 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 self.Fail('conformance/textures/misc/texture-npot.html', | 846 self.Fail('conformance/textures/misc/texture-npot.html', |
| 845 ['chromeos', ('intel', 0xa011)], bug=375554) | 847 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 846 self.Fail('conformance/textures/misc/texture-npot-video.html', | 848 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 847 ['chromeos', ('intel', 0xa011)], bug=375554) | 849 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 848 self.Fail('conformance/textures/misc/texture-size.html', | 850 self.Fail('conformance/textures/misc/texture-size.html', |
| 849 ['chromeos', ('intel', 0xa011)], bug=375554) | 851 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 850 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 852 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 851 ['chromeos', ('intel', 0xa011)], bug=375554) | 853 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 852 self.Skip('conformance/uniforms/uniform-default-values.html', | 854 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 855 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |