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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 124 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
125 ['passthrough'], bug=1523) # angle bug ID | 125 ['passthrough'], bug=1523) # angle bug ID |
126 self.Fail('conformance/glsl/misc/shaders-with-name-conflicts.html', | 126 self.Fail('conformance/glsl/misc/shaders-with-name-conflicts.html', |
127 ['passthrough'], bug=1639) # angle bug ID | 127 ['passthrough'], bug=1639) # angle bug ID |
128 self.Fail('conformance/misc/invalid-passed-params.html', | 128 self.Fail('conformance/misc/invalid-passed-params.html', |
129 ['passthrough'], bug=1639) # angle bug ID | 129 ['passthrough'], bug=1639) # angle bug ID |
130 self.Fail('conformance/misc/uninitialized-test.html', | 130 self.Fail('conformance/misc/uninitialized-test.html', |
131 ['passthrough'], bug=1635) # angle bug ID | 131 ['passthrough'], bug=1635) # angle bug ID |
132 self.Fail('conformance/reading/read-pixels-test.html', | 132 self.Fail('conformance/reading/read-pixels-test.html', |
133 ['passthrough'], bug=1639) # angle bug ID | 133 ['passthrough'], bug=1639) # angle bug ID |
| 134 self.Fail('conformance/renderbuffers/renderbuffer-initialization.html', |
| 135 ['passthrough'], bug=1635) # angle bug ID |
134 self.Fail('conformance/textures/misc/texture-mips.html', | 136 self.Fail('conformance/textures/misc/texture-mips.html', |
135 ['passthrough'], bug=665518) | 137 ['passthrough'], bug=665518) |
136 self.Fail('WebglExtension_OES_texture_float_linear', | 138 self.Fail('WebglExtension_OES_texture_float_linear', |
137 ['passthrough'], bug=1523) # angle bug ID | 139 ['passthrough'], bug=1523) # angle bug ID |
138 self.Fail('WebglExtension_OES_texture_half_float_linear', | 140 self.Fail('WebglExtension_OES_texture_half_float_linear', |
139 ['passthrough'], bug=1523) # angle bug ID | 141 ['passthrough'], bug=1523) # angle bug ID |
140 self.Skip('conformance/textures/canvas/*', | 142 self.Skip('conformance/textures/canvas/*', |
141 ['passthrough'], bug=1932) # angle bug ID | 143 ['passthrough'], bug=1932) # angle bug ID |
142 self.Skip('conformance/textures/video/*', | 144 self.Skip('conformance/textures/video/*', |
143 ['passthrough'], bug=1932) # angle bug ID | 145 ['passthrough'], bug=1932) # angle bug ID |
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 self.Fail('conformance/textures/misc/texture-npot.html', | 739 self.Fail('conformance/textures/misc/texture-npot.html', |
738 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 740 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
739 self.Fail('conformance/textures/misc/texture-npot-video.html', | 741 self.Fail('conformance/textures/misc/texture-npot-video.html', |
740 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 742 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
741 self.Fail('conformance/textures/misc/texture-size.html', | 743 self.Fail('conformance/textures/misc/texture-size.html', |
742 ['chromeos', ('intel', 0xa011)], bug=375554) | 744 ['chromeos', ('intel', 0xa011)], bug=375554) |
743 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 745 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
744 ['chromeos', ('intel', 0xa011)], bug=375554) | 746 ['chromeos', ('intel', 0xa011)], bug=375554) |
745 self.Skip('conformance/uniforms/uniform-default-values.html', | 747 self.Skip('conformance/uniforms/uniform-default-values.html', |
746 ['chromeos', ('intel', 0xa011)], bug=375554) | 748 ['chromeos', ('intel', 0xa011)], bug=375554) |
OLD | NEW |