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

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

Issue 2445973002: Suppress WebGL 2 conformance failures on Linux bots. (Closed)
Patch Set: Created 4 years, 1 month 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, url_prefixes=None): 9 def __init__(self, conformance_path, url_prefixes=None):
10 super(WebGL2ConformanceExpectations, self).__init__( 10 super(WebGL2ConformanceExpectations, self).__init__(
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 # The Mesa Intel driver has a scoping bug, see 558 # The Mesa Intel driver has a scoping bug, see
559 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 559 # https://bugs.freedesktop.org/show_bug.cgi?id=95184
560 # It has been fixed in Mesa 12.0 560 # It has been fixed in Mesa 12.0
561 self.Fail('deqp/data/gles3/shaders/scoping.html', 561 self.Fail('deqp/data/gles3/shaders/scoping.html',
562 ['linux', 'intel'], bug=610800) 562 ['linux', 'intel'], bug=610800)
563 563
564 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', 564 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html',
565 ['linux', 'intel'], bug=635528) 565 ['linux', 'intel'], bug=635528)
566 566
567 # Linux Intel with ANGLE only 567 # Linux Intel with ANGLE only
568 self.Fail('deqp/functional/gles3/framebufferblit/' +
569 'default_framebuffer_00.html',
570 ['linux', 'intel', 'opengl'], bug=658832)
571
568 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', 572 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html',
569 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id 573 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id
570 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', 574 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html',
571 ['linux', 'intel', 'opengl'], bug=634525) 575 ['linux', 'intel', 'opengl'], bug=634525)
576 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html',
577 ['linux', 'intel', 'opengl'], bug=655147)
578 self.Fail('conformance2/rendering/' +
579 'blitframebuffer-multisampled-readbuffer.html',
580 ['linux', 'intel', 'opengl'], bug=658898)
581 self.Fail('conformance2/rendering/blitframebuffer-test.html',
582 ['linux', 'intel', 'opengl'], bug=658898)
572 583
573 # The Intel Mesa driver only supports sRGB encoding in ES 3.x, see 584 # The Intel Mesa driver only supports sRGB encoding in ES 3.x, see
574 # https://patchwork.freedesktop.org/patch/76903 585 # https://patchwork.freedesktop.org/patch/76903
575 # So these tests fail on core profile. 586 # So these tests fail on core profile.
576 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', 587 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html',
577 ['linux', 'intel', 'opengl'], bug=598902) 588 ['linux', 'intel', 'opengl'], bug=598902)
578 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', 589 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html',
579 ['linux', 'intel', 'opengl'], bug=598902) 590 ['linux', 'intel', 'opengl'], bug=598902)
580 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html', 591 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html',
581 ['linux', 'intel', 'opengl'], bug=598902) 592 ['linux', 'intel', 'opengl'], bug=598902)
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html', 808 self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html',
798 ['linux', 'amd'], bug=483282) 809 ['linux', 'amd'], bug=483282)
799 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', 810 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html',
800 ['linux', 'amd'], bug=483282) 811 ['linux', 'amd'], bug=483282)
801 self.Fail('deqp/functional/gles3/framebufferblit/conversion_32.html', 812 self.Fail('deqp/functional/gles3/framebufferblit/conversion_32.html',
802 ['linux', 'amd'], bug=483282) 813 ['linux', 'amd'], bug=483282)
803 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', 814 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html',
804 ['linux', 'amd'], bug=483282) 815 ['linux', 'amd'], bug=483282)
805 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html', 816 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html',
806 ['linux', 'amd'], bug=483282) 817 ['linux', 'amd'], bug=483282)
818 self.Fail('deqp/functional/gles3/framebufferblit/' +
819 'default_framebuffer_00.html',
820 ['linux', 'amd'], bug=658832)
807 821
808 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_01.html', 822 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_01.html',
809 ['linux', 'amd'], bug=483282) 823 ['linux', 'amd'], bug=483282)
810 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html', 824 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html',
811 ['linux', 'amd'], bug=483282) 825 ['linux', 'amd'], bug=483282)
812 826
813 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 827 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
814 ['linux', 'amd'], bug=483282) 828 ['linux', 'amd'], bug=483282)
815 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 829 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
816 ['linux', 'amd', 'no_angle'], bug=483282) 830 ['linux', 'amd', 'no_angle'], bug=483282)
817 self.Fail('conformance2/textures/misc/tex-unpack-params.html', 831 self.Fail('conformance2/textures/misc/tex-unpack-params.html',
818 ['linux', 'amd', 'no_angle'], bug=483282) 832 ['linux', 'amd', 'no_angle'], bug=483282)
819 self.Fail('conformance2/extensions/ext-color-buffer-float.html', 833 self.Fail('conformance2/extensions/ext-color-buffer-float.html',
820 ['linux', 'amd'], bug=633022) 834 ['linux', 'amd'], bug=633022)
835 self.Flaky('conformance2/buffers/uniform-buffers.html',
836 ['linux', 'amd'], bug=658842)
837 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html',
838 ['linux', 'amd'], bug=655147)
839 self.Flaky('conformance2/rendering/uniform-block-buffer-size.html',
840 ['linux', 'amd'], bug=658844)
821 841
822 # Conflicting expectations to test that the 842 # Conflicting expectations to test that the
823 # "Expectations Have No collisions" unittest works. 843 # "Expectations Have No collisions" unittest works.
824 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' 844 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html'
825 845
826 # Conflict when all conditions match 846 # Conflict when all conditions match
827 # self.Fail(page_name, 847 # self.Fail(page_name,
828 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 848 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
829 # self.Fail(page_name, 849 # self.Fail(page_name,
830 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 850 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 # self.Fail(page_name, 896 # self.Fail(page_name,
877 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 897 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
878 # self.Fail(page_name, 898 # self.Fail(page_name,
879 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 899 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
880 900
881 # Conflicts if between a generic os condition and a specific version 901 # Conflicts if between a generic os condition and a specific version
882 # self.Fail(page_name, 902 # self.Fail(page_name,
883 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 903 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
884 # self.Fail(page_name, 904 # self.Fail(page_name,
885 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 905 # ['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