| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 self.Fail('deqp/functional/gles3/transformfeedback/*', | 75 self.Fail('deqp/functional/gles3/transformfeedback/*', |
| 76 ['win', ('amd', 0x6779)], bug=626068) | 76 ['win', ('amd', 0x6779)], bug=626068) |
| 77 | 77 |
| 78 self.Fail('deqp/functional/gles3/shadercommonfunction.html', | 78 self.Fail('deqp/functional/gles3/shadercommonfunction.html', |
| 79 ['win', ('amd', 0x6779)], bug=483282) | 79 ['win', ('amd', 0x6779)], bug=483282) |
| 80 self.Fail('deqp/functional/gles3/multisample.html', | 80 self.Fail('deqp/functional/gles3/multisample.html', |
| 81 ['win', ('amd', 0x6779)], bug=617290) | 81 ['win', ('amd', 0x6779)], bug=617290) |
| 82 | 82 |
| 83 # Keep a separate set of failures for the R7 240, since it can use a new | 83 # Keep a separate set of failures for the R7 240, since it can use a new |
| 84 # and updated driver. The older drivers won't ever get fixes from AMD. | 84 # and updated driver. The older drivers won't ever get fixes from AMD. |
| 85 self.Fail('deqp/functional/gles3/framebufferblit/depth_stencil.html', | 85 # Use ['win', ('amd', 0x6613)] for the R7 240 devices. |
| 86 ['win', ('amd', 0x6613)], bug=638323) | 86 # We are awesome! |
| 87 self.Fail('deqp/functional/gles3/texturefiltering/2d_array*', | |
| 88 ['win', ('amd', 0x6613)], bug=638323) | |
| 89 self.Fail('deqp/functional/gles3/texturefiltering/cube*', | |
| 90 ['win', ('amd', 0x6613)], bug=638323) | |
| 91 | 87 |
| 92 # It's unfortunate that these suppressions need to be so broad, but | 88 # It's unfortunate that these suppressions need to be so broad, but |
| 93 # basically any test that uses readPixels is potentially flaky, and | 89 # basically any test that uses readPixels is potentially flaky, and |
| 94 # it's infeasible to suppress individual failures one by one. | 90 # it's infeasible to suppress individual failures one by one. |
| 95 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) | 91 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) |
| 96 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 92 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
| 97 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 93 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
| 98 | 94 |
| 99 # Win / Intel | 95 # Win / Intel |
| 100 self.Skip('conformance2/textures/misc/copy-texture-image.html', | 96 self.Skip('conformance2/textures/misc/copy-texture-image.html', |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 # self.Fail(page_name, | 838 # self.Fail(page_name, |
| 843 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 839 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 844 # self.Fail(page_name, | 840 # self.Fail(page_name, |
| 845 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 841 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 846 | 842 |
| 847 # Conflicts if between a generic os condition and a specific version | 843 # Conflicts if between a generic os condition and a specific version |
| 848 # self.Fail(page_name, | 844 # self.Fail(page_name, |
| 849 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 845 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 850 # self.Fail(page_name, | 846 # self.Fail(page_name, |
| 851 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 847 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |