| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 self.Fail('conformance/textures/misc/texture-attachment-formats.html', | 336 self.Fail('conformance/textures/misc/texture-attachment-formats.html', |
| 337 ['win', 'passthrough', 'd3d11'], bug=602688) | 337 ['win', 'passthrough', 'd3d11'], bug=602688) |
| 338 self.Fail('conformance/textures/misc/texture-copying-feedback-loops.html', | 338 self.Fail('conformance/textures/misc/texture-copying-feedback-loops.html', |
| 339 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 339 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 340 self.Fail('conformance/textures/misc/texture-mips.html', | 340 self.Fail('conformance/textures/misc/texture-mips.html', |
| 341 ['win', 'passthrough', 'd3d11'], bug=665518) | 341 ['win', 'passthrough', 'd3d11'], bug=665518) |
| 342 self.Fail('conformance/uniforms/uniform-samplers-test.html', | 342 self.Fail('conformance/uniforms/uniform-samplers-test.html', |
| 343 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 343 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
| 344 self.Fail('WebglExtension_OES_texture_float_linear', | 344 self.Fail('WebglExtension_OES_texture_float_linear', |
| 345 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID | 345 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID |
| 346 self.Fail('WebglExtension_OES_element_index_uint', |
| 347 ['win', 'passthrough', 'd3d11'], bug=671217) # angle bug ID |
| 346 self.Fail('WebglExtension_OES_texture_half_float_linear', | 348 self.Fail('WebglExtension_OES_texture_half_float_linear', |
| 347 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID | 349 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID |
| 348 | 350 |
| 349 # Win / Intel / Passthrough command decoder | 351 # Win / Intel / Passthrough command decoder |
| 350 self.Flaky('conformance/renderbuffers/framebuffer-state-restoration.html', | 352 self.Flaky('conformance/renderbuffers/framebuffer-state-restoration.html', |
| 351 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) | 353 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) |
| 352 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', | 354 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
| 353 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID | 355 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID |
| 354 self.Fail('conformance/textures/misc/' + | 356 self.Fail('conformance/textures/misc/' + |
| 355 'copytexsubimage2d-large-partial-copy-corruption.html', | 357 'copytexsubimage2d-large-partial-copy-corruption.html', |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 self.Fail('conformance/textures/misc/texture-npot.html', | 858 self.Fail('conformance/textures/misc/texture-npot.html', |
| 857 ['chromeos', ('intel', 0xa011)], bug=375554) | 859 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 858 self.Fail('conformance/textures/misc/texture-npot-video.html', | 860 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 859 ['chromeos', ('intel', 0xa011)], bug=375554) | 861 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 860 self.Fail('conformance/textures/misc/texture-size.html', | 862 self.Fail('conformance/textures/misc/texture-size.html', |
| 861 ['chromeos', ('intel', 0xa011)], bug=375554) | 863 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 862 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 864 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 863 ['chromeos', ('intel', 0xa011)], bug=375554) | 865 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 864 self.Skip('conformance/uniforms/uniform-default-values.html', | 866 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 865 ['chromeos', ('intel', 0xa011)], bug=375554) | 867 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |