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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 bug=483282) | 84 bug=483282) |
85 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', | 85 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', |
86 bug=483282) | 86 bug=483282) |
87 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', | 87 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', |
88 bug=483282) | 88 bug=483282) |
89 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) | 89 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) |
90 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', | 90 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', |
91 bug=483282) | 91 bug=483282) |
92 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) | 92 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) |
93 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) | 93 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) |
94 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 |
97 # Windows only. | 96 # Windows only. |
98 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) | 97 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) |
99 self.Skip('deqp/functional/gles3/texturestatequery.html', | 98 self.Skip('deqp/functional/gles3/texturestatequery.html', |
100 ['win'], bug=483282) | 99 ['win'], bug=483282) |
101 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 100 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
102 ['win'], bug=483282) | 101 ['win'], bug=483282) |
103 self.Fail('conformance2/glsl3/frag-depth.html', | 102 self.Fail('conformance2/glsl3/frag-depth.html', |
104 ['win'], bug=483282) | 103 ['win'], bug=483282) |
(...skipping 171 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 |