| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 ['mac', ('nvidia', 0xfe9)], bug=483282) | 212 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 213 self.Fail('conformance/programs/' + | 213 self.Fail('conformance/programs/' + |
| 214 'gl-bind-attrib-location-long-names-test.html', | 214 'gl-bind-attrib-location-long-names-test.html', |
| 215 ['mac', ('nvidia', 0xfe9)], bug=483282) | 215 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 216 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', | 216 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', |
| 217 ['mac', ('nvidia', 0xfe9)], bug=483282) | 217 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 218 self.Fail('conformance2/glsl3/loops-with-side-effects.html', | 218 self.Fail('conformance2/glsl3/loops-with-side-effects.html', |
| 219 ['mac', ('nvidia', 0xfe9)], bug=483282) | 219 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 220 self.Fail('conformance2/textures/misc/tex-input-validation.html', | 220 self.Fail('conformance2/textures/misc/tex-input-validation.html', |
| 221 ['mac', ('nvidia', 0xfe9), 'no_angle'], bug=483282) | 221 ['mac', ('nvidia', 0xfe9), 'no_angle'], bug=483282) |
| 222 self.Flaky('conformance2/textures/image_bitmap_from_video/' + |
| 223 'tex-2d-rgba16f-rgba-half_float.html', |
| 224 ['mac', ('nvidia', 0xfe9)], bug=682834) |
| 222 | 225 |
| 223 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', | 226 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', |
| 224 ['mac', ('nvidia', 0xfe9)], bug=483282) | 227 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 225 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', | 228 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', |
| 226 ['mac', ('nvidia', 0xfe9)], bug=483282) | 229 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 227 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html', | 230 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html', |
| 228 ['mac', ('nvidia', 0xfe9)], bug=483282) | 231 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 229 self.Fail('deqp/functional/gles3/framebufferblit/conversion_10.html', | 232 self.Fail('deqp/functional/gles3/framebufferblit/conversion_10.html', |
| 230 ['mac', ('nvidia', 0xfe9)], bug=483282) | 233 ['mac', ('nvidia', 0xfe9)], bug=483282) |
| 231 self.Fail('deqp/functional/gles3/framebufferblit/conversion_11.html', | 234 self.Fail('deqp/functional/gles3/framebufferblit/conversion_11.html', |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 # self.Fail(page_name, | 1028 # self.Fail(page_name, |
| 1026 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1029 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1027 # self.Fail(page_name, | 1030 # self.Fail(page_name, |
| 1028 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1031 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1029 | 1032 |
| 1030 # Conflicts if between a generic os condition and a specific version | 1033 # Conflicts if between a generic os condition and a specific version |
| 1031 # self.Fail(page_name, | 1034 # self.Fail(page_name, |
| 1032 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1035 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1033 # self.Fail(page_name, | 1036 # self.Fail(page_name, |
| 1034 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1037 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |