| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # Windows only. | 47 # Windows only. |
| 48 | 48 |
| 49 # This should be fixed in the latest driver. | 49 # This should be fixed in the latest driver. |
| 50 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', | 50 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', |
| 51 ['win'], bug=1246) # ANGLE bug. | 51 ['win'], bug=1246) # ANGLE bug. |
| 52 | 52 |
| 53 # Windows 8 only. | 53 # Windows 8 only. |
| 54 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win8'], bug=587601) | 54 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win8'], bug=587601) |
| 55 | 55 |
| 56 # Win / NVidia | 56 # Win / NVidia |
| 57 # La la la la la la la la la la ... | 57 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 58 ['win', 'nvidia'], bug=631317) |
| 58 | 59 |
| 59 # Win / AMD | 60 # Win / AMD |
| 60 self.Fail('deqp/functional/gles3/texturespecification/' + | 61 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 61 'texstorage2d_format_depth_stencil.html', | 62 'texstorage2d_format_depth_stencil.html', |
| 62 ['win', ('amd', 0x6779)], bug=614178) | 63 ['win', ('amd', 0x6779)], bug=614178) |
| 63 self.Fail('deqp/functional/gles3/texturespecification/' + | 64 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 64 'texstorage3d_format_depth_stencil.html', | 65 'texstorage3d_format_depth_stencil.html', |
| 65 ['win', ('amd', 0x6779)], bug=614178) | 66 ['win', ('amd', 0x6779)], bug=614178) |
| 66 self.Fail('deqp/functional/gles3/shadertexturefunction/texture.html', | 67 self.Fail('deqp/functional/gles3/shadertexturefunction/texture.html', |
| 67 ['win', ('amd', 0x6779)], bug=483282) | 68 ['win', ('amd', 0x6779)], bug=483282) |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 # self.Fail(page_name, | 846 # self.Fail(page_name, |
| 846 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 847 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 847 # self.Fail(page_name, | 848 # self.Fail(page_name, |
| 848 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 849 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 849 | 850 |
| 850 # Conflicts if between a generic os condition and a specific version | 851 # Conflicts if between a generic os condition and a specific version |
| 851 # self.Fail(page_name, | 852 # self.Fail(page_name, |
| 852 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 853 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 853 # self.Fail(page_name, | 854 # self.Fail(page_name, |
| 854 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 855 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |