| 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) | 36 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) |
| 37 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', | 37 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', |
| 38 ['linux'], bug=483282) | 38 ['linux'], bug=483282) |
| 39 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519) | 39 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519) |
| 40 | 40 |
| 41 # All platforms. | 41 # All platforms. |
| 42 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 42 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
| 43 bug=664740) | 43 bug=664740) |
| 44 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 44 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) |
| 45 self.Fail('conformance2/rendering/blitframebuffer-test.html', bug=634525) | |
| 46 self.Fail('conformance2/buffers/uniform-buffers.html', bug=644957) | 45 self.Fail('conformance2/buffers/uniform-buffers.html', bug=644957) |
| 47 self.Fail('conformance2/state/gl-object-get-calls.html', bug=644957) | 46 self.Fail('conformance2/state/gl-object-get-calls.html', bug=644957) |
| 48 | 47 |
| 49 # Windows only. | 48 # Windows only. |
| 50 # We are awesome! | 49 # We are awesome! |
| 51 | 50 |
| 52 # Win / NVidia | 51 # Win / NVidia |
| 53 self.Flaky('deqp/functional/gles3/fbomultisample*', | 52 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 54 ['win', 'nvidia'], bug=631317) | 53 ['win', 'nvidia'], bug=631317) |
| 55 | 54 |
| (...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 # self.Fail(page_name, | 808 # self.Fail(page_name, |
| 810 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 809 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 811 # self.Fail(page_name, | 810 # self.Fail(page_name, |
| 812 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 811 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 813 | 812 |
| 814 # Conflicts if between a generic os condition and a specific version | 813 # Conflicts if between a generic os condition and a specific version |
| 815 # self.Fail(page_name, | 814 # self.Fail(page_name, |
| 816 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 815 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 817 # self.Fail(page_name, | 816 # self.Fail(page_name, |
| 818 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 817 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |