| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 # Use ['win', ('amd', 0x6613)] for the R7 240 devices. | 81 # Use ['win', ('amd', 0x6613)] for the R7 240 devices. |
| 82 | 82 |
| 83 # It's unfortunate that these suppressions need to be so broad, but | 83 # It's unfortunate that these suppressions need to be so broad, but |
| 84 # basically any test that uses readPixels is potentially flaky, and | 84 # basically any test that uses readPixels is potentially flaky, and |
| 85 # it's infeasible to suppress individual failures one by one. | 85 # it's infeasible to suppress individual failures one by one. |
| 86 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 86 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
| 87 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 87 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
| 88 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 88 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
| 89 | 89 |
| 90 # Win / Intel | 90 # Win / Intel |
| 91 self.Fail('conformance2/glsl3/' + |
| 92 'texture-offset-uniform-texture-coordinate.html', |
| 93 ['win', 'intel'], bug=662644) # WebGL 2.0.1 |
| 94 self.Fail('conformance2/glsl3/unary-minus-operator-in-dynamic-loop.html', |
| 95 ['win', 'intel'], bug=662644) # WebGL 2.0.1 |
| 96 self.Fail('conformance2/rendering/clear-srgb-color-buffer.html', |
| 97 ['win', 'intel'], bug=662644) # WebGL 2.0.1 |
| 91 self.Skip('conformance2/textures/misc/copy-texture-image.html', | 98 self.Skip('conformance2/textures/misc/copy-texture-image.html', |
| 92 ['win', 'intel'], bug=617449) | 99 ['win', 'intel'], bug=617449) |
| 93 # Seems to cause the harness to fail immediately afterward | 100 # Seems to cause the harness to fail immediately afterward |
| 94 self.Skip('conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html', | 101 self.Skip('conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html', |
| 95 ['win', 'intel'], bug=648337) | 102 ['win', 'intel'], bug=648337) |
| 96 self.Flaky('deqp/functional/gles3/lifetime.html', | 103 self.Flaky('deqp/functional/gles3/lifetime.html', |
| 97 ['win', 'intel'], bug=620379) | 104 ['win', 'intel'], bug=620379) |
| 98 self.Skip('deqp/functional/gles3/texturespecification/' + | 105 self.Skip('deqp/functional/gles3/texturespecification/' + |
| 99 'teximage3d_depth_pbo.html', | 106 'teximage3d_depth_pbo.html', |
| 100 ['win', 'intel'], bug=617449) | 107 ['win', 'intel'], bug=617449) |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 # self.Fail(page_name, | 853 # self.Fail(page_name, |
| 847 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 854 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 848 # self.Fail(page_name, | 855 # self.Fail(page_name, |
| 849 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 856 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 850 | 857 |
| 851 # Conflicts if between a generic os condition and a specific version | 858 # Conflicts if between a generic os condition and a specific version |
| 852 # self.Fail(page_name, | 859 # self.Fail(page_name, |
| 853 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 860 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 854 # self.Fail(page_name, | 861 # self.Fail(page_name, |
| 855 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 862 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |