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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 ['mac'], bug=654187) | 249 ['mac'], bug=654187) |
250 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', | 250 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', |
251 ['mac'], bug=654187) | 251 ['mac'], bug=654187) |
252 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', | 252 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', |
253 ['mac'], bug=654187) | 253 ['mac'], bug=654187) |
254 | 254 |
255 self.Fail('conformance2/reading/format-r11f-g11f-b10f.html', | 255 self.Fail('conformance2/reading/format-r11f-g11f-b10f.html', |
256 ['mac'], bug=1832) # khronos WebGL issue | 256 ['mac'], bug=1832) # khronos WebGL issue |
257 | 257 |
258 # Mac Retina NVIDIA | 258 # Mac Retina NVIDIA |
259 self.Fail('conformance/textures/misc/cube-map-uploads-out-of-order.html', | |
260 ['mac', ('nvidia', 0xfe9)], bug=473739) | |
261 self.Fail('deqp/functional/gles3/fbomultisample*', | 259 self.Fail('deqp/functional/gles3/fbomultisample*', |
262 ['mac', ('nvidia', 0xfe9)], bug=641209) | 260 ['mac', ('nvidia', 0xfe9)], bug=641209) |
263 self.Fail('deqp/functional/gles3/framebufferblit/' + | 261 self.Fail('deqp/functional/gles3/framebufferblit/' + |
264 'default_framebuffer_04.html', | 262 'default_framebuffer_04.html', |
265 ['mac', ('nvidia', 0xfe9)], bug=483282) | 263 ['mac', ('nvidia', 0xfe9)], bug=483282) |
266 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 264 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
267 ['mac', ('nvidia', 0xfe9)], bug=483282) | 265 ['mac', ('nvidia', 0xfe9)], bug=483282) |
268 self.Flaky( | 266 self.Flaky( |
269 'conformance/extensions/webgl-compressed-texture-size-limit.html', | 267 'conformance/extensions/webgl-compressed-texture-size-limit.html', |
270 ['mac', ('nvidia', 0xfe9)], bug=483282) | 268 ['mac', ('nvidia', 0xfe9)], bug=483282) |
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 # self.Fail(page_name, | 1154 # self.Fail(page_name, |
1157 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1155 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1158 # self.Fail(page_name, | 1156 # self.Fail(page_name, |
1159 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1157 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1160 | 1158 |
1161 # Conflicts if between a generic os condition and a specific version | 1159 # Conflicts if between a generic os condition and a specific version |
1162 # self.Fail(page_name, | 1160 # self.Fail(page_name, |
1163 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1161 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1164 # self.Fail(page_name, | 1162 # self.Fail(page_name, |
1165 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1163 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |