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

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

Issue 2128313002: Update the WebGL2 CTS expectations after driver upgrade (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add back suppression that is still failing Created 4 years, 5 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', 483 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html',
484 ['mac', 'intel'], bug=483282) 484 ['mac', 'intel'], bug=483282)
485 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', 485 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html',
486 ['mac', 'intel'], bug=483282) 486 ['mac', 'intel'], bug=483282)
487 self.Fail('deqp/functional/gles3/framebufferblit/rect_05.html', 487 self.Fail('deqp/functional/gles3/framebufferblit/rect_05.html',
488 ['mac', 'intel'], bug=483282) 488 ['mac', 'intel'], bug=483282)
489 self.Fail('deqp/functional/gles3/framebufferblit/rect_06.html', 489 self.Fail('deqp/functional/gles3/framebufferblit/rect_06.html',
490 ['mac', 'intel'], bug=483282) 490 ['mac', 'intel'], bug=483282)
491 491
492 # Linux only. 492 # Linux only.
493 self.Fail('deqp/data/gles3/shaders/functions.html',
494 ['linux'], bug=483282)
495 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 493 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
496 ['linux'], bug=483282) 494 ['linux'], bug=483282)
497 self.Fail('deqp/functional/gles3/fbodepthbuffer.html', 495 self.Fail('deqp/functional/gles3/fbodepthbuffer.html',
498 ['linux'], bug=483282) 496 ['linux'], bug=483282)
499 497
500 # Behavior difference between GL compatibility profile and ES3. 498 # Behavior difference between GL compatibility profile and ES3.
501 self.Fail('conformance2/rendering/draw-buffers.html', 499 self.Fail('conformance2/rendering/draw-buffers.html',
502 ['linux'], bug=617410) 500 ['linux'], bug=617410)
503
504 self.Skip('deqp/data/gles3/shaders/qualification_order.html',
505 ['linux', 'amd', 'intel'], bug=483282)
506 self.Fail('deqp/functional/gles3/clipping.html',
507 ['linux', 'amd', 'intel'], bug=483282)
508
509 self.Flaky('deqp/functional/gles3/texturespecification/' +
510 'random_teximage2d_2d.html',
511 ['linux'], bug=618447)
512 self.Fail('deqp/functional/gles3/texturespecification/' + 501 self.Fail('deqp/functional/gles3/texturespecification/' +
513 'random_teximage2d_cube.html', 502 'random_teximage2d_cube.html',
514 ['linux'], bug=483282) 503 ['linux'], bug=483282)
515 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html', 504 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html',
516 ['linux'], bug=624506) 505 ['linux'], bug=624506)
517 506
507 self.Fail('deqp/data/gles3/shaders/functions.html',
508 ['linux', 'amd', 'intel'], bug=483282)
509 self.Skip('deqp/data/gles3/shaders/qualification_order.html',
510 ['linux', 'amd', 'intel'], bug=483282)
511 self.Fail('deqp/functional/gles3/clipping.html',
512 ['linux', 'amd', 'intel'], bug=483282)
513 self.Flaky('deqp/functional/gles3/texturespecification/' +
514 'random_teximage2d_2d.html',
515 ['linux', 'amd', 'intel'], bug=618447)
516
518 # Linux NVIDIA only. 517 # Linux NVIDIA only.
519 self.Fail('conformance2/glsl3/array-complex-indexing.html',
520 ['linux', 'nvidia', 'no_angle'], bug=606498)
521 self.Fail('deqp/functional/gles3/uniformapi/random.html', 518 self.Fail('deqp/functional/gles3/uniformapi/random.html',
522 ['linux', 'nvidia'], bug=621178) 519 ['linux', 'nvidia'], bug=621178)
523 520
524 # Linux NVIDIA with ANGLE only 521 # Linux NVIDIA with ANGLE only
525 self.Fail('deqp/functional/gles3/buffercopy.html', 522 self.Fail('deqp/functional/gles3/buffercopy.html',
526 ['linux', 'nvidia', 'opengl'], bug=483282) 523 ['linux', 'nvidia', 'opengl'], bug=483282)
527 self.Fail('deqp/functional/gles3/bufferobjectquery.html', 524 self.Fail('deqp/functional/gles3/bufferobjectquery.html',
528 ['linux', 'nvidia', 'opengl'], bug=483282) 525 ['linux', 'nvidia', 'opengl'], bug=483282)
529 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 526 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
530 ['linux', 'nvidia', 'opengl'], bug=483282) 527 ['linux', 'nvidia', 'opengl'], bug=483282)
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 # self.Fail(page_name, 852 # self.Fail(page_name,
856 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 853 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
857 # self.Fail(page_name, 854 # self.Fail(page_name,
858 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 855 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
859 856
860 # Conflicts if between a generic os condition and a specific version 857 # Conflicts if between a generic os condition and a specific version
861 # self.Fail(page_name, 858 # self.Fail(page_name,
862 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 859 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
863 # self.Fail(page_name, 860 # self.Fail(page_name,
864 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 861 # ['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