| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/glsl3/array-complex-indexing.html', bug=483282) | 80 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) |
| 81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) | 81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) |
| 82 self.Fail('conformance2/extensions/promoted-extensions-in-shaders.html', | 82 self.Fail('conformance2/extensions/promoted-extensions-in-shaders.html', |
| 83 bug=295792) | 83 bug=295792) |
| 84 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 84 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', |
| 85 bug=483282) | 85 bug=483282) |
| 86 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) | 86 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) |
| 87 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) | 87 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) |
| 88 | 88 |
| 89 # Windows only. | 89 # Windows only. |
| 90 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) | 90 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) |
| 91 self.Skip('deqp/functional/gles3/texturestatequery.html', | 91 self.Skip('deqp/functional/gles3/texturestatequery.html', |
| 92 ['win'], bug=483282) | 92 ['win'], bug=483282) |
| 93 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 93 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
| 94 ['win'], bug=483282) | 94 ['win'], bug=483282) |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 # self.Fail(page_name, | 316 # self.Fail(page_name, |
| 317 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 317 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 318 # self.Fail(page_name, | 318 # self.Fail(page_name, |
| 319 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 319 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 320 | 320 |
| 321 # Conflicts if between a generic os condition and a specific version | 321 # Conflicts if between a generic os condition and a specific version |
| 322 # self.Fail(page_name, | 322 # self.Fail(page_name, |
| 323 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 323 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 324 # self.Fail(page_name, | 324 # self.Fail(page_name, |
| 325 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 325 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |