| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 # Nexus 9 | 106 # Nexus 9 |
| 107 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', | 107 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', |
| 108 ['android', ('nvidia', 'NVIDIA Tegra')]) | 108 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 109 | 109 |
| 110 # ======================== | 110 # ======================== |
| 111 # Conformance expectations | 111 # Conformance expectations |
| 112 # ======================== | 112 # ======================== |
| 113 # Fails on all platforms | 113 # Fails on all platforms |
| 114 | 114 |
| 115 # Test that needs to be fixed in the WebGL CTS | 115 # Need to add detection of feedback loops with multiple render targets. |
| 116 # https://github.com/KhronosGroup/WebGL/issues/2173 | 116 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', |
| 117 self.Fail('conformance/misc/bad-arguments-test.html', | 117 bug=1619) # angle bug ID |
| 118 bug=2173) # WebGL issue number | |
| 119 | 118 |
| 120 # We need to add WebGL 1 check in command buffer that format/type from | 119 # We need to add WebGL 1 check in command buffer that format/type from |
| 121 # TexSubImage2D have to match the current texture's. | 120 # TexSubImage2D have to match the current texture's. |
| 122 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 121 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 123 bug=570453) | 122 bug=570453) |
| 124 | 123 |
| 125 # Win failures | 124 # Win failures |
| 126 # Note that the following test seems to pass, but it may still be flaky. | 125 # Note that the following test seems to pass, but it may still be flaky. |
| 127 self.Fail('conformance/glsl/constructors/' + | 126 self.Fail('conformance/glsl/constructors/' + |
| 128 'glsl-construct-vec-mat-index.html', | 127 'glsl-construct-vec-mat-index.html', |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 self.Fail('conformance/textures/misc/texture-npot.html', | 707 self.Fail('conformance/textures/misc/texture-npot.html', |
| 709 ['chromeos', ('intel', 0xa011)], bug=375554) | 708 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 710 self.Fail('conformance/textures/misc/texture-npot-video.html', | 709 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 711 ['chromeos', ('intel', 0xa011)], bug=375554) | 710 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 712 self.Fail('conformance/textures/misc/texture-size.html', | 711 self.Fail('conformance/textures/misc/texture-size.html', |
| 713 ['chromeos', ('intel', 0xa011)], bug=375554) | 712 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 714 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 713 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 715 ['chromeos', ('intel', 0xa011)], bug=375554) | 714 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 716 self.Skip('conformance/uniforms/uniform-default-values.html', | 715 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 717 ['chromeos', ('intel', 0xa011)], bug=375554) | 716 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |