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

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

Issue 1549393002: (reland)WebGL 2: generate appropriate error for different dimensions of images attached to fbo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed zmo@'s feedback: mark draw-buffers.html as failed, will update the test expectation later Created 4 years, 11 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/WebGLFramebuffer.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): 9 def __init__(self, conformance_path):
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) 76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282)
77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) 77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282)
78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) 78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282)
79 79
80 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) 80 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282)
81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) 81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282)
82 self.Fail('conformance2/extensions/promoted-extensions-in-shaders.html', 82 self.Fail('conformance2/extensions/promoted-extensions-in-shaders.html',
83 bug=295792) 83 bug=295792)
84 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 84 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
85 bug=483282) 85 bug=483282)
86 self.Fail('conformance2/rendering/draw-buffers.html', bug=483282)
86 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) 87 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282)
87 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) 88 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282)
88 89
89 # Windows only. 90 # Windows only.
90 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) 91 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282)
91 self.Skip('deqp/functional/gles3/texturestatequery.html', 92 self.Skip('deqp/functional/gles3/texturestatequery.html',
92 ['win'], bug=483282) 93 ['win'], bug=483282)
93 self.Fail('conformance2/glsl3/array-in-complex-expression.html', 94 self.Fail('conformance2/glsl3/array-in-complex-expression.html',
94 ['win'], bug=483282) 95 ['win'], bug=483282)
95 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', 96 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html',
96 ['win'], bug=483282) 97 ['win'], bug=483282)
97 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html', 98 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html',
98 ['win'], bug=1082) # angle bug ID 99 ['win'], bug=1082) # angle bug ID
99 self.Fail('conformance2/rendering/draw-buffers.html',
100 ['win'], bug=483282)
101 self.Fail('conformance2/state/gl-object-get-calls.html', 100 self.Fail('conformance2/state/gl-object-get-calls.html',
102 ['win'], bug=483282) 101 ['win'], bug=483282)
103 self.Fail('conformance2/textures/canvas/*', ['win'], bug=483282) 102 self.Fail('conformance2/textures/canvas/*', ['win'], bug=483282)
104 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', 103 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html',
105 ['win'], bug=483282) 104 ['win'], bug=483282)
106 self.Fail('conformance2/textures/misc/tex-input-validation.html', 105 self.Fail('conformance2/textures/misc/tex-input-validation.html',
107 ['win'], bug=483282) 106 ['win'], bug=483282)
108 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html', 107 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html',
109 ['win'], bug=483282) 108 ['win'], bug=483282)
110 self.Skip('conformance2/transform_feedback/transform_feedback.html', 109 self.Skip('conformance2/transform_feedback/transform_feedback.html',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', 221 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html',
223 ['mac'], bug=483282) 222 ['mac'], bug=483282)
224 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', 223 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html',
225 ['mac'], bug=483282) 224 ['mac'], bug=483282)
226 225
227 # Linux only. 226 # Linux only.
228 self.Skip('deqp/functional/gles3/shaderswitch.html', 227 self.Skip('deqp/functional/gles3/shaderswitch.html',
229 ['linux'], bug=483282) 228 ['linux'], bug=483282)
230 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 229 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
231 ['linux'], bug=483282) 230 ['linux'], bug=483282)
232 self.Fail('conformance2/rendering/draw-buffers.html',
233 ['linux'], bug=483282)
234 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html', 231 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html',
235 ['linux'], bug=564020) 232 ['linux'], bug=564020)
236 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', 233 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html',
237 ['linux'], bug=483282) 234 ['linux'], bug=483282)
238 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', 235 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html',
239 ['linux'], bug=483282) 236 ['linux'], bug=483282)
240 237
241 # Linux NVIDIA only. 238 # Linux NVIDIA only.
242 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', 239 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html',
243 ['linux', 'nvidia'], bug=483282) 240 ['linux', 'nvidia'], bug=483282)
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 # self.Fail(page_name, 313 # self.Fail(page_name,
317 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 314 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
318 # self.Fail(page_name, 315 # self.Fail(page_name,
319 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 316 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
320 317
321 # Conflicts if between a generic os condition and a specific version 318 # Conflicts if between a generic os condition and a specific version
322 # self.Fail(page_name, 319 # self.Fail(page_name,
323 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 320 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
324 # self.Fail(page_name, 321 # self.Fail(page_name,
325 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 322 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698