| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 # Win and Mac | 55 # Win and Mac |
| 56 self.Fail('deqp/functional/gles3/sync.html', ['win', 'mac'], bug=676848) | 56 self.Fail('deqp/functional/gles3/sync.html', ['win', 'mac'], bug=676848) |
| 57 | 57 |
| 58 # Windows only. | 58 # Windows only. |
| 59 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', | 59 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', |
| 60 ['win'], bug=644740) | 60 ['win'], bug=644740) |
| 61 | 61 |
| 62 # Win / NVidia | 62 # Win / NVidia |
| 63 self.Flaky('deqp/functional/gles3/fbomultisample*', | 63 self.Flaky('deqp/functional/gles3/fbomultisample*', |
| 64 ['win', 'nvidia'], bug=631317) | 64 ['win', 'nvidia'], bug=631317) |
| 65 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | |
| 66 ['win', 'nvidia'], bug=672380) | |
| 67 self.Fail('conformance2/rendering/' + | 65 self.Fail('conformance2/rendering/' + |
| 68 'draw-with-integer-texture-base-level.html', | 66 'draw-with-integer-texture-base-level.html', |
| 69 ['win', 'nvidia'], bug=679639) | 67 ['win', 'nvidia'], bug=679639) |
| 70 | 68 |
| 71 # Win10 / NVIDIA Quadro M2000 failures | 69 # Win10 / NVIDIA Quadro M2000 failures |
| 72 self.Fail('deqp/functional/gles3/transformfeedback/' + | 70 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 73 'basic_types_interleaved_lines.html', | 71 'basic_types_interleaved_lines.html', |
| 74 ['win10', ('nvidia', 0x1430)], bug=680754) | 72 ['win10', ('nvidia', 0x1430)], bug=680754) |
| 75 self.Fail('deqp/functional/gles3/transformfeedback/' + | 73 self.Fail('deqp/functional/gles3/transformfeedback/' + |
| 76 'basic_types_interleaved_triangles.html', | 74 'basic_types_interleaved_triangles.html', |
| (...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1051 # self.Fail(page_name, | 1049 # self.Fail(page_name, |
| 1052 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1050 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1053 # self.Fail(page_name, | 1051 # self.Fail(page_name, |
| 1054 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1052 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1055 | 1053 |
| 1056 # Conflicts if between a generic os condition and a specific version | 1054 # Conflicts if between a generic os condition and a specific version |
| 1057 # self.Fail(page_name, | 1055 # self.Fail(page_name, |
| 1058 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1056 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1059 # self.Fail(page_name, | 1057 # self.Fail(page_name, |
| 1060 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1058 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |