| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 # All platforms. | 57 # All platforms. |
| 58 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html', | 58 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html', |
| 59 bug=657853) | 59 bug=657853) |
| 60 self.Fail('conformance2/textures/misc/tex-image-with-bad-args.html', | 60 self.Fail('conformance2/textures/misc/tex-image-with-bad-args.html', |
| 61 bug=656889) | 61 bug=656889) |
| 62 self.Fail('conformance2/context/methods-2.html', bug=616554) | 62 self.Fail('conformance2/context/methods-2.html', bug=616554) |
| 63 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) | 63 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) |
| 64 | 64 |
| 65 # Windows only. | 65 # Windows only. |
| 66 # We are awesome! | 66 # We are awesome! |
| 67 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | |
| 68 ['win'], bug=1555) # ANGLE bug. | |
| 69 | 67 |
| 70 # Win / NVidia | 68 # Win / NVidia |
| 71 self.Flaky('deqp/functional/gles3/fbomultisample*', | 69 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 72 ['win', 'nvidia'], bug=631317) | 70 ['win', 'nvidia'], bug=631317) |
| 73 | 71 |
| 74 # This should be fixed in the latest driver. | 72 # This should be fixed in the latest driver. |
| 75 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', | 73 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', |
| 76 ['win', 'nvidia'], bug=1246) # ANGLE bug. | 74 ['win', 'nvidia'], bug=1246) # ANGLE bug. |
| 77 | 75 |
| 78 # Win / AMD | 76 # Win / AMD |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 # self.Fail(page_name, | 887 # self.Fail(page_name, |
| 890 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 888 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 891 # self.Fail(page_name, | 889 # self.Fail(page_name, |
| 892 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 890 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 893 | 891 |
| 894 # Conflicts if between a generic os condition and a specific version | 892 # Conflicts if between a generic os condition and a specific version |
| 895 # self.Fail(page_name, | 893 # self.Fail(page_name, |
| 896 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 894 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 897 # self.Fail(page_name, | 895 # self.Fail(page_name, |
| 898 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 896 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |