OLD | NEW |
---|---|
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 webgl_conformance_expectations import WebGLConformanceExpectations | 6 from webgl_conformance_expectations import WebGLConformanceExpectations |
7 | 7 |
8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
9 | 9 |
10 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 10 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
86 bug=483282) | 86 bug=483282) |
87 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', | 87 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', |
88 bug=483282) | 88 bug=483282) |
89 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', | 89 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', |
90 bug=483282) | 90 bug=483282) |
91 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) | 91 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) |
92 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', | 92 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', |
93 bug=483282) | 93 bug=483282) |
94 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) | 94 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) |
95 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) | 95 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) |
96 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', bug=483282) | |
Ken Russell (switch to Gerrit)
2015/10/22 01:36:32
Awesome work that this test is now passing.
| |
97 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282) | 96 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282) |
98 | 97 |
99 # Windows only. | 98 # Windows only. |
100 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) | 99 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) |
101 self.Skip('deqp/functional/gles3/texturestatequery.html', | 100 self.Skip('deqp/functional/gles3/texturestatequery.html', |
102 ['win'], bug=483282) | 101 ['win'], bug=483282) |
103 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 102 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
104 ['win'], bug=483282) | 103 ['win'], bug=483282) |
105 self.Fail('conformance2/glsl3/frag-depth.html', | 104 self.Fail('conformance2/glsl3/frag-depth.html', |
106 ['win'], bug=483282) | 105 ['win'], bug=483282) |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
215 self.Fail('conformance2/attribs/gl-vertex-attrib-i-render.html', | 214 self.Fail('conformance2/attribs/gl-vertex-attrib-i-render.html', |
216 ['linux', 'amd'], bug=483282) | 215 ['linux', 'amd'], bug=483282) |
217 self.Fail('conformance2/attribs/gl-vertexattribipointer-offsets.html', | 216 self.Fail('conformance2/attribs/gl-vertexattribipointer-offsets.html', |
218 ['linux', 'amd'], bug=483282) | 217 ['linux', 'amd'], bug=483282) |
219 self.Fail('conformance2/buffers/buffer-type-restrictions.html', | 218 self.Fail('conformance2/buffers/buffer-type-restrictions.html', |
220 ['linux', 'amd'], bug=483282) | 219 ['linux', 'amd'], bug=483282) |
221 self.Fail('conformance2/buffers/buffer-overflow-test.html', | 220 self.Fail('conformance2/buffers/buffer-overflow-test.html', |
222 ['linux', 'amd'], bug=483282) | 221 ['linux', 'amd'], bug=483282) |
223 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', | 222 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', |
224 ['linux', 'amd'], bug=483282) | 223 ['linux', 'amd'], bug=483282) |
OLD | NEW |