| 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, url_prefixes=None): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 # 2.0.1 OR LATER | 40 # 2.0.1 OR LATER |
| 41 # Too slow (take about one hour to run) | 41 # Too slow (take about one hour to run) |
| 42 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403) | 42 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403) |
| 43 | 43 |
| 44 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) | 44 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) |
| 45 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', | 45 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', |
| 46 ['linux'], bug=483282) | 46 ['linux'], bug=483282) |
| 47 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519) | 47 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519) |
| 48 | 48 |
| 49 # All platforms. | 49 # All platforms. |
| 50 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | |
| 51 bug=644740) | |
| 52 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 50 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 53 bug=644740) | 51 bug=644740) |
| 54 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 52 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) |
| 55 | 53 |
| 56 # Windows only. | 54 # Windows only. |
| 57 # We are awesome! | 55 # We are awesome! |
| 58 | 56 |
| 59 # Win / NVidia | 57 # Win / NVidia |
| 60 self.Flaky('deqp/functional/gles3/fbomultisample*', | 58 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 61 ['win', 'nvidia'], bug=631317) | 59 ['win', 'nvidia'], bug=631317) |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 # self.Fail(page_name, | 884 # self.Fail(page_name, |
| 887 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 885 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 888 # self.Fail(page_name, | 886 # self.Fail(page_name, |
| 889 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 887 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 890 | 888 |
| 891 # Conflicts if between a generic os condition and a specific version | 889 # Conflicts if between a generic os condition and a specific version |
| 892 # self.Fail(page_name, | 890 # self.Fail(page_name, |
| 893 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 891 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 894 # self.Fail(page_name, | 892 # self.Fail(page_name, |
| 895 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 893 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |