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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 self.Fail('conformance/textures/misc/texture-npot-video.html', | 320 self.Fail('conformance/textures/misc/texture-npot-video.html', |
321 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 321 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
322 self.Fail('conformance/uniforms/uniform-samplers-test.html', | 322 self.Fail('conformance/uniforms/uniform-samplers-test.html', |
323 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID | 323 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID |
324 self.Fail('WebglExtension_OES_texture_float_linear', | 324 self.Fail('WebglExtension_OES_texture_float_linear', |
325 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID | 325 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID |
326 self.Fail('WebglExtension_OES_texture_half_float_linear', | 326 self.Fail('WebglExtension_OES_texture_half_float_linear', |
327 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID | 327 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID |
328 | 328 |
329 # Win / Intel / Passthrough command decoder | 329 # Win / Intel / Passthrough command decoder |
| 330 self.Flaky('conformance/renderbuffers/framebuffer-state-restoration.html', |
| 331 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) |
330 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', | 332 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
331 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID | 333 ['win', 'intel', 'passthrough', 'd3d11'], bug=1635) # angle bug ID |
| 334 self.Fail('conformance/textures/misc/' + |
| 335 'copytexsubimage2d-large-partial-copy-corruption.html', |
| 336 ['win', 'intel', 'passthrough', 'd3d11'], bug=602688) |
332 | 337 |
333 # Mac failures | 338 # Mac failures |
334 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', | 339 self.Flaky('conformance/extensions/oes-texture-float-with-video.html', |
335 ['mac'], bug=599272) | 340 ['mac'], bug=599272) |
336 | 341 |
337 # Mac AMD failures | 342 # Mac AMD failures |
338 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', | 343 self.Fail('conformance/glsl/bugs/bool-type-cast-bug-int-float.html', |
339 ['mac', 'amd'], bug=483282) | 344 ['mac', 'amd'], bug=483282) |
340 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 345 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
341 ['mac', 'amd'], bug=625365) | 346 ['mac', 'amd'], bug=625365) |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 self.Fail('conformance/textures/misc/texture-npot.html', | 824 self.Fail('conformance/textures/misc/texture-npot.html', |
820 ['chromeos', ('intel', 0xa011)], bug=375554) | 825 ['chromeos', ('intel', 0xa011)], bug=375554) |
821 self.Fail('conformance/textures/misc/texture-npot-video.html', | 826 self.Fail('conformance/textures/misc/texture-npot-video.html', |
822 ['chromeos', ('intel', 0xa011)], bug=375554) | 827 ['chromeos', ('intel', 0xa011)], bug=375554) |
823 self.Fail('conformance/textures/misc/texture-size.html', | 828 self.Fail('conformance/textures/misc/texture-size.html', |
824 ['chromeos', ('intel', 0xa011)], bug=375554) | 829 ['chromeos', ('intel', 0xa011)], bug=375554) |
825 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 830 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
826 ['chromeos', ('intel', 0xa011)], bug=375554) | 831 ['chromeos', ('intel', 0xa011)], bug=375554) |
827 self.Skip('conformance/uniforms/uniform-default-values.html', | 832 self.Skip('conformance/uniforms/uniform-default-values.html', |
828 ['chromeos', ('intel', 0xa011)], bug=375554) | 833 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |