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

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: 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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', 489 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html',
490 ['mac', 'intel'], bug=483282) 490 ['mac', 'intel'], bug=483282)
491 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', 491 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html',
492 ['mac', 'intel'], bug=483282) 492 ['mac', 'intel'], bug=483282)
493 self.Fail('deqp/functional/gles3/framebufferblit/rect_05.html', 493 self.Fail('deqp/functional/gles3/framebufferblit/rect_05.html',
494 ['mac', 'intel'], bug=483282) 494 ['mac', 'intel'], bug=483282)
495 self.Fail('deqp/functional/gles3/framebufferblit/rect_06.html', 495 self.Fail('deqp/functional/gles3/framebufferblit/rect_06.html',
496 ['mac', 'intel'], bug=483282) 496 ['mac', 'intel'], bug=483282)
497 497
498 # Linux only. 498 # Linux only.
499 self.Fail('deqp/data/gles3/shaders/functions.html',
500 ['linux'], bug=483282)
501 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 499 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
502 ['linux'], bug=483282) 500 ['linux'], bug=483282)
503 self.Fail('deqp/functional/gles3/fbodepthbuffer.html', 501 self.Fail('deqp/functional/gles3/fbodepthbuffer.html',
504 ['linux'], bug=483282) 502 ['linux'], bug=483282)
505 503
506 # Behavior difference between GL compatibility profile and ES3. 504 # Behavior difference between GL compatibility profile and ES3.
507 self.Fail('conformance2/rendering/draw-buffers.html', 505 self.Fail('conformance2/rendering/draw-buffers.html',
508 ['linux'], bug=617410) 506 ['linux'], bug=617410)
509
510 self.Skip('deqp/data/gles3/shaders/qualification_order.html',
511 ['linux', 'amd', 'intel'], bug=483282)
512 self.Fail('deqp/functional/gles3/clipping.html',
513 ['linux', 'amd', 'intel'], bug=483282)
514
515 self.Flaky('deqp/functional/gles3/texturespecification/' +
516 'random_teximage2d_2d.html',
517 ['linux'], bug=618447)
518 self.Fail('deqp/functional/gles3/texturespecification/' + 507 self.Fail('deqp/functional/gles3/texturespecification/' +
519 'random_teximage2d_cube.html', 508 'random_teximage2d_cube.html',
520 ['linux'], bug=483282) 509 ['linux'], bug=483282)
521 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html', 510 self.Fail('deqp/functional/gles3/fboinvalidate/whole.html',
522 ['linux'], bug=624506) 511 ['linux'], bug=624506)
523 512
524 # Linux NVIDIA only. 513 self.Fail('deqp/data/gles3/shaders/functions.html',
525 self.Fail('conformance2/glsl3/array-complex-indexing.html', 514 ['linux', 'amd', 'intel'], bug=483282)
526 ['linux', 'nvidia', 'no_angle'], bug=606498) 515 self.Skip('deqp/data/gles3/shaders/qualification_order.html',
527 self.Fail('deqp/functional/gles3/uniformapi/random.html', 516 ['linux', 'amd', 'intel'], bug=483282)
528 ['linux', 'nvidia'], bug=621178) 517 self.Fail('deqp/functional/gles3/clipping.html',
Ken Russell (switch to Gerrit) 2016/07/07 19:20:01 It looks like this one is still failing? https://b
518 ['linux', 'amd', 'intel'], bug=483282)
519 self.Flaky('deqp/functional/gles3/texturespecification/' +
520 'random_teximage2d_2d.html',
521 ['linux', 'amd', 'intel'], bug=618447)
529 522
530 # Linux NVIDIA with ANGLE only 523 # Linux NVIDIA with ANGLE only
531 self.Fail('deqp/functional/gles3/buffercopy.html', 524 self.Fail('deqp/functional/gles3/buffercopy.html',
532 ['linux', 'nvidia', 'opengl'], bug=483282) 525 ['linux', 'nvidia', 'opengl'], bug=483282)
533 self.Fail('deqp/functional/gles3/bufferobjectquery.html', 526 self.Fail('deqp/functional/gles3/bufferobjectquery.html',
534 ['linux', 'nvidia', 'opengl'], bug=483282) 527 ['linux', 'nvidia', 'opengl'], bug=483282)
535 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 528 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
536 ['linux', 'nvidia', 'opengl'], bug=483282) 529 ['linux', 'nvidia', 'opengl'], bug=483282)
537 self.Fail('conformance2/transform_feedback/transform_feedback.html', 530 self.Fail('conformance2/transform_feedback/transform_feedback.html',
538 ['linux', 'nvidia', 'opengl'], bug=483282) 531 ['linux', 'nvidia', 'opengl'], bug=483282)
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 # self.Fail(page_name, 854 # self.Fail(page_name,
862 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 855 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
863 # self.Fail(page_name, 856 # self.Fail(page_name,
864 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 857 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
865 858
866 # Conflicts if between a generic os condition and a specific version 859 # Conflicts if between a generic os condition and a specific version
867 # self.Fail(page_name, 860 # self.Fail(page_name,
868 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 861 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
869 # self.Fail(page_name, 862 # self.Fail(page_name,
870 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 863 # ['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