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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
5 | 5 |
6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
7 | 7 |
8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
9 def __init__(self, conformance_path): | 9 def __init__(self, conformance_path): |
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 self.Skip('deqp/functional/gles3/textureshadow.html', bug=483282) | 72 self.Skip('deqp/functional/gles3/textureshadow.html', bug=483282) |
73 self.Skip('deqp/functional/gles3/texturespecification*.html', bug=483282) | 73 self.Skip('deqp/functional/gles3/texturespecification*.html', bug=483282) |
74 self.Skip('deqp/functional/gles3/texturewrap.html', bug=483282) | 74 self.Skip('deqp/functional/gles3/texturewrap.html', bug=483282) |
75 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) | 75 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) |
76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) | 76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) |
77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) | 77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) |
78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) | 78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) |
79 | 79 |
80 self.Fail('conformance2/buffers/uniform-buffers.html', bug=483282) | 80 self.Fail('conformance2/buffers/uniform-buffers.html', bug=483282) |
81 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) | 81 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) |
| 82 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) |
82 self.Fail('conformance2/glsl3/invalid-default-precision.html', bug=483282) | 83 self.Fail('conformance2/glsl3/invalid-default-precision.html', bug=483282) |
83 self.Fail('conformance2/glsl3/sequence-operator-returns-non-constant.html', | 84 self.Fail('conformance2/glsl3/sequence-operator-returns-non-constant.html', |
84 bug=483282) | 85 bug=483282) |
85 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', | |
86 bug=483282) | |
87 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', | 86 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', |
88 bug=483282) | 87 bug=483282) |
89 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) | 88 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) |
90 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', | 89 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', |
91 bug=483282) | 90 bug=483282) |
92 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) | 91 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) |
93 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) | 92 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) |
94 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', bug=483282) | 93 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', bug=483282) |
95 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282) | 94 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282) |
96 | 95 |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 # self.Fail(page_name, | 275 # self.Fail(page_name, |
277 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 276 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
278 # self.Fail(page_name, | 277 # self.Fail(page_name, |
279 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 278 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
280 | 279 |
281 # Conflicts if between a generic os condition and a specific version | 280 # Conflicts if between a generic os condition and a specific version |
282 # self.Fail(page_name, | 281 # self.Fail(page_name, |
283 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 282 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
284 # self.Fail(page_name, | 283 # self.Fail(page_name, |
285 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 284 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |