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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', | 96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', |
97 bug=1619) # angle bug ID | 97 bug=1619) # angle bug ID |
98 | 98 |
99 # We need to add WebGL 1 check in command buffer that format/type from | 99 # We need to add WebGL 1 check in command buffer that format/type from |
100 # TexSubImage2D have to match the current texture's. | 100 # TexSubImage2D have to match the current texture's. |
101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
102 bug=625738) | 102 bug=625738) |
103 | 103 |
104 # canvas.commit() promise synchronization isn't fully reliable yet. | 104 # canvas.commit() promise synchronization isn't fully reliable yet. |
105 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html', | 105 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html', |
106 bug=709484) | 106 bug=709484) |
| 107 |
| 108 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', |
| 109 bug=1966) # angle bug ID |
107 | 110 |
108 # Passthrough command decoder | 111 # Passthrough command decoder |
109 self.Fail('conformance/extensions/ext-sRGB.html', | 112 self.Fail('conformance/extensions/ext-sRGB.html', |
110 ['passthrough'], bug=679696) | 113 ['passthrough'], bug=679696) |
111 self.Fail('conformance/extensions/oes-standard-derivatives.html', | 114 self.Fail('conformance/extensions/oes-standard-derivatives.html', |
112 ['passthrough'], bug=665521) | 115 ['passthrough'], bug=665521) |
113 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 116 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
114 ['passthrough'], bug=1523) # angle bug ID | 117 ['passthrough'], bug=1523) # angle bug ID |
115 self.Fail('conformance/extensions/ext-frag-depth.html', | 118 self.Fail('conformance/extensions/ext-frag-depth.html', |
116 ['passthrough'], bug=1523) # angle bug ID | 119 ['passthrough'], bug=1523) # angle bug ID |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 self.Fail('conformance/textures/misc/texture-npot.html', | 798 self.Fail('conformance/textures/misc/texture-npot.html', |
796 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 799 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
797 self.Fail('conformance/textures/misc/texture-npot-video.html', | 800 self.Fail('conformance/textures/misc/texture-npot-video.html', |
798 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 801 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
799 self.Fail('conformance/textures/misc/texture-size.html', | 802 self.Fail('conformance/textures/misc/texture-size.html', |
800 ['chromeos', ('intel', 0xa011)], bug=375554) | 803 ['chromeos', ('intel', 0xa011)], bug=375554) |
801 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 804 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
802 ['chromeos', ('intel', 0xa011)], bug=375554) | 805 ['chromeos', ('intel', 0xa011)], bug=375554) |
803 self.Skip('conformance/uniforms/uniform-default-values.html', | 806 self.Skip('conformance/uniforms/uniform-default-values.html', |
804 ['chromeos', ('intel', 0xa011)], bug=375554) | 807 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |