Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: content/test/gpu/gpu_tests/webgl2_conformance_expectations.py

Issue 1663803002: Supress failures in the gl-get-calls WebGL2 confromance test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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): 9 def __init__(self, conformance_path):
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 self.Fail('conformance2/textures/image/tex-image-and-sub-image-3d' + 260 self.Fail('conformance2/textures/image/tex-image-and-sub-image-3d' +
261 '-with-image-rgb565-rgb-unsigned_byte.html', 261 '-with-image-rgb565-rgb-unsigned_byte.html',
262 ['win8'], bug=560555) 262 ['win8'], bug=560555)
263 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + 263 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' +
264 '-with-svg-image-rgb565-rgb-unsigned_byte.html', 264 '-with-svg-image-rgb565-rgb-unsigned_byte.html',
265 ['win8'], bug=560555) 265 ['win8'], bug=560555)
266 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + 266 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' +
267 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html', 267 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html',
268 ['win8'], bug=560555) 268 ['win8'], bug=560555)
269 269
270 # Windows Server 2008
271 # TODO(geofflang): no specific supression for this OS yet, temporarily
272 # supress on all windows versions.
273 self.Fail('conformance2/state/gl-get-calls.html', ['win'], bug=483282)
274
270 # Windows Debug. Causing assertions in the GPU process which raise 275 # Windows Debug. Causing assertions in the GPU process which raise
271 # a dialog box, so have to skip them rather than mark them as 276 # a dialog box, so have to skip them rather than mark them as
272 # failing. 277 # failing.
273 self.Skip('conformance2/textures/canvas/tex-image-and-sub-image-2d' + 278 self.Skip('conformance2/textures/canvas/tex-image-and-sub-image-2d' +
274 '-with-canvas-rgba8-rgba-unsigned_byte.html', 279 '-with-canvas-rgba8-rgba-unsigned_byte.html',
275 ['win', 'debug'], bug=542901) 280 ['win', 'debug'], bug=542901)
276 281
277 # Mac only. 282 # Mac only.
278 self.Skip('deqp/data/gles3/shaders/qualification_order.html', 283 self.Skip('deqp/data/gles3/shaders/qualification_order.html',
279 ['mac'], bug=483282) 284 ['mac'], bug=483282)
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 # self.Fail(page_name, 422 # self.Fail(page_name,
418 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 423 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
419 # self.Fail(page_name, 424 # self.Fail(page_name,
420 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 425 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
421 426
422 # Conflicts if between a generic os condition and a specific version 427 # Conflicts if between a generic os condition and a specific version
423 # self.Fail(page_name, 428 # self.Fail(page_name,
424 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 429 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
425 # self.Fail(page_name, 430 # self.Fail(page_name,
426 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 431 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698