| 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, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 # Windows only. | 64 # Windows only. |
| 65 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 65 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
| 66 ['win', 'd3d11'], bug=644740) | 66 ['win', 'd3d11'], bug=644740) |
| 67 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', | 67 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', |
| 68 ['win', 'd3d11'], bug=705865) | 68 ['win', 'd3d11'], bug=705865) |
| 69 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) | 69 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) |
| 70 | 70 |
| 71 # Win / NVidia | 71 # Win / NVidia |
| 72 self.Flaky('deqp/functional/gles3/fbomultisample*', | 72 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 73 ['win', 'nvidia', 'd3d11'], bug=631317) | 73 ['win', 'nvidia', 'd3d11'], bug=631317) |
| 74 self.Flaky('deqp/functional/gles3/texturefiltering/cube_combinations_*', | |
| 75 ['win', 'nvidia'], bug=712739) | |
| 76 self.Fail('conformance2/rendering/' + | 74 self.Fail('conformance2/rendering/' + |
| 77 'draw-with-integer-texture-base-level.html', | 75 'draw-with-integer-texture-base-level.html', |
| 78 ['win', 'nvidia', 'd3d11'], bug=679639) | 76 ['win', 'nvidia', 'd3d11'], bug=679639) |
| 79 | 77 |
| 80 # Win10 / NVIDIA Quadro P400 failures | 78 # Win10 / NVIDIA Quadro P400 failures |
| 81 self.Fail('deqp/functional/gles3/transformfeedback/' + | 79 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 82 'basic_types_interleaved_lines.html', | 80 'basic_types_interleaved_lines.html', |
| 83 ['win10', ('nvidia', 0x1cb3), 'd3d11'], bug=680754) | 81 ['win10', ('nvidia', 0x1cb3), 'd3d11'], bug=680754) |
| 84 self.Fail('deqp/functional/gles3/transformfeedback/' + | 82 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 85 'basic_types_interleaved_triangles.html', | 83 'basic_types_interleaved_triangles.html', |
| (...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1165 # self.Fail(page_name, | 1163 # self.Fail(page_name, |
| 1166 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1164 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1167 # self.Fail(page_name, | 1165 # self.Fail(page_name, |
| 1168 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1166 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1169 | 1167 |
| 1170 # Conflicts if between a generic os condition and a specific version | 1168 # Conflicts if between a generic os condition and a specific version |
| 1171 # self.Fail(page_name, | 1169 # self.Fail(page_name, |
| 1172 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1170 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1173 # self.Fail(page_name, | 1171 # self.Fail(page_name, |
| 1174 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1172 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |