| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 self.Skip('deqp/functional/gles3/shaderbuiltinvar.html', bug=483282) | 50 self.Skip('deqp/functional/gles3/shaderbuiltinvar.html', bug=483282) |
| 51 self.Skip('deqp/functional/gles3/shadercommonfunction.html', bug=483282) | 51 self.Skip('deqp/functional/gles3/shadercommonfunction.html', bug=483282) |
| 52 self.Skip('deqp/functional/gles3/shaderderivate.html', bug=483282) | 52 self.Skip('deqp/functional/gles3/shaderderivate.html', bug=483282) |
| 53 self.Skip('deqp/functional/gles3/shaderloop.html', bug=483282) | 53 self.Skip('deqp/functional/gles3/shaderloop.html', bug=483282) |
| 54 self.Skip('deqp/functional/gles3/shadermatrix.html', bug=483282) | 54 self.Skip('deqp/functional/gles3/shadermatrix.html', bug=483282) |
| 55 self.Skip('deqp/functional/gles3/shaderoperator.html', bug=483282) | 55 self.Skip('deqp/functional/gles3/shaderoperator.html', bug=483282) |
| 56 self.Skip('deqp/functional/gles3/shaderpackingfunction.html', bug=483282) | 56 self.Skip('deqp/functional/gles3/shaderpackingfunction.html', bug=483282) |
| 57 self.Skip('deqp/functional/gles3/shaderstatequery.html', bug=483282) | 57 self.Skip('deqp/functional/gles3/shaderstatequery.html', bug=483282) |
| 58 self.Skip('deqp/functional/gles3/shadertexturefunction/*.html', bug=483282) | 58 self.Skip('deqp/functional/gles3/shadertexturefunction/*.html', bug=483282) |
| 59 self.Skip('deqp/functional/gles3/sync.html', bug=483282) | 59 self.Skip('deqp/functional/gles3/sync.html', bug=483282) |
| 60 self.Skip('deqp/functional/gles3/textureshadow.html', bug=483282) | 60 self.Skip('deqp/functional/gles3/textureshadow/*.html', bug=483282) |
| 61 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) | 61 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) |
| 62 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) | 62 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) |
| 63 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) | 63 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) |
| 64 | 64 |
| 65 self.Fail('deqp/data/gles3/shaders/preprocessor.html', bug=483282) | 65 self.Fail('deqp/data/gles3/shaders/preprocessor.html', bug=483282) |
| 66 self.Flaky('deqp/functional/gles3/shaderindexing.html', bug=483282) | 66 self.Flaky('deqp/functional/gles3/shaderindexing.html', bug=483282) |
| 67 | 67 |
| 68 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) | 68 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) |
| 69 | 69 |
| 70 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 70 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 # self.Fail(page_name, | 682 # self.Fail(page_name, |
| 683 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 683 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 684 # self.Fail(page_name, | 684 # self.Fail(page_name, |
| 685 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 685 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 686 | 686 |
| 687 # Conflicts if between a generic os condition and a specific version | 687 # Conflicts if between a generic os condition and a specific version |
| 688 # self.Fail(page_name, | 688 # self.Fail(page_name, |
| 689 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 689 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 690 # self.Fail(page_name, | 690 # self.Fail(page_name, |
| 691 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 691 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |