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

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

Issue 2823193002: Add supported formats by EXT_color_buffer_float for CopyTexImage2D (Closed)
Patch Set: remove suppressions Created 3 years, 8 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 | third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h » ('j') | 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, 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 bug=660844) # WebGL 2.0.1 54 bug=660844) # WebGL 2.0.1
55 self.Fail('conformance2/textures/misc/' + 55 self.Fail('conformance2/textures/misc/' +
56 'integer-cubemap-specification-order-bug.html', 56 'integer-cubemap-specification-order-bug.html',
57 bug=483282) # owner:cwallez, test might be buggy 57 bug=483282) # owner:cwallez, test might be buggy
58 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', 58 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html',
59 bug=625738) 59 bug=625738)
60 60
61 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', 61 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html',
62 bug=1966) # angle bug ID 62 bug=1966) # angle bug ID
63 63
64 self.Fail('conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html',
65 bug=712584)
66 self.Fail('conformance2/extensions/ext-color-buffer-float.html',
67 bug=712584)
68
69 # Windows only. 64 # Windows only.
70 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', 65 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html',
71 ['win', 'd3d11'], bug=644740) 66 ['win', 'd3d11'], bug=644740)
72 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848) 67 self.Fail('deqp/functional/gles3/sync.html', ['win', 'd3d11'], bug=676848)
73 68
74 # Win / NVidia 69 # Win / NVidia
75 self.Flaky('deqp/functional/gles3/fbomultisample*', 70 self.Flaky('deqp/functional/gles3/fbomultisample*',
76 ['win', 'nvidia', 'd3d11'], bug=631317) 71 ['win', 'nvidia', 'd3d11'], bug=631317)
77 self.Fail('conformance2/rendering/' + 72 self.Fail('conformance2/rendering/' +
78 'draw-with-integer-texture-base-level.html', 73 'draw-with-integer-texture-base-level.html',
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 ['linux', 'nvidia'], bug=694354) 738 ['linux', 'nvidia'], bug=694354)
744 739
745 # Linux NVIDIA Quadro P400 740 # Linux NVIDIA Quadro P400
746 self.Fail('deqp/functional/gles3/multisample.html', 741 self.Fail('deqp/functional/gles3/multisample.html',
747 ['linux', ('nvidia', 0x1cb3)], bug=702861) 742 ['linux', ('nvidia', 0x1cb3)], bug=702861)
748 # This test causes a lost device and then the next test fails. 743 # This test causes a lost device and then the next test fails.
749 self.Skip('conformance2/rendering/blitframebuffer-size-overflow.html', 744 self.Skip('conformance2/rendering/blitframebuffer-size-overflow.html',
750 ['linux', ('nvidia', 0x1cb3)], bug=709320) 745 ['linux', ('nvidia', 0x1cb3)], bug=709320)
751 746
752 # Linux Intel 747 # Linux Intel
748 self.Fail('conformance2/extensions/ext-color-buffer-float.html',
749 ['linux', 'intel'], bug=640389)
qiankun 2017/04/20 16:45:55 This suppression is removed when I roll WebGL to f
Ken Russell (switch to Gerrit) 2017/04/20 17:59:31 Acknowledged.
753 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', 750 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2',
754 ['linux', 'intel'], bug=687210) 751 ['linux', 'intel'], bug=687210)
755 752
756 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 753 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477
757 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', 754 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html',
758 ['linux', 'intel'], bug=540543) # GPU timeout 755 ['linux', 'intel'], bug=540543) # GPU timeout
759 756
760 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', 757 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html',
761 ['linux', 'intel'], bug=635528) 758 ['linux', 'intel'], bug=635528)
762 759
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1012 ['linux', 'amd'], bug=483282) 1009 ['linux', 'amd'], bug=483282)
1013 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html', 1010 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html',
1014 ['linux', 'amd'], bug=483282) 1011 ['linux', 'amd'], bug=483282)
1015 1012
1016 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 1013 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
1017 ['linux', 'amd'], bug=483282) 1014 ['linux', 'amd'], bug=483282)
1018 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 1015 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
1019 ['linux', 'amd', 'no_angle'], bug=483282) 1016 ['linux', 'amd', 'no_angle'], bug=483282)
1020 self.Fail('conformance2/textures/misc/tex-unpack-params.html', 1017 self.Fail('conformance2/textures/misc/tex-unpack-params.html',
1021 ['linux', 'amd', 'no_angle'], bug=483282) 1018 ['linux', 'amd', 'no_angle'], bug=483282)
1019 self.Fail('conformance2/extensions/ext-color-buffer-float.html',
1020 ['linux', 'amd'], bug=633022)
qiankun 2017/04/20 16:45:55 Same here.
Ken Russell (switch to Gerrit) 2017/04/20 17:59:31 Acknowledged.
1022 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', 1021 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html',
1023 ['linux', 'amd'], bug=655147) 1022 ['linux', 'amd'], bug=655147)
1024 1023
1025 # Uniform buffer related failures 1024 # Uniform buffer related failures
1026 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', 1025 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html',
1027 ['linux', 'amd'], bug=483282) 1026 ['linux', 'amd'], bug=483282)
1028 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', 1027 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html',
1029 ['linux', 'amd'], bug=483282) 1028 ['linux', 'amd'], bug=483282)
1030 self.Fail('deqp/functional/gles3/uniformbuffers/' + 1029 self.Fail('deqp/functional/gles3/uniformbuffers/' +
1031 'single_nested_struct_array.html', 1030 'single_nested_struct_array.html',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 # self.Fail(page_name, 1114 # self.Fail(page_name,
1116 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1115 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
1117 # self.Fail(page_name, 1116 # self.Fail(page_name,
1118 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1117 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
1119 1118
1120 # Conflicts if between a generic os condition and a specific version 1119 # Conflicts if between a generic os condition and a specific version
1121 # self.Fail(page_name, 1120 # self.Fail(page_name,
1122 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 1121 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
1123 # self.Fail(page_name, 1122 # self.Fail(page_name,
1124 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1123 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698