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

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

Issue 2293853003: Roll WebGL 12b543b..5888a9f (Closed)
Patch Set: update webgl 2 expectation again Created 4 years, 3 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 | « DEPS ('k') | 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 22 matching lines...) Expand all
33 # Too slow (take about one hour to run) 33 # Too slow (take about one hour to run)
34 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403) 34 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403)
35 35
36 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) 36 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282)
37 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', 37 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html',
38 ['linux'], bug=483282) 38 ['linux'], bug=483282)
39 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519) 39 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519)
40 40
41 # All platforms. 41 # All platforms.
42 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 42 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
43 self.Fail('conformance2/misc/expando-loss-2.html', bug=483282)
Ken Russell (switch to Gerrit) 2016/09/01 18:00:55 Kai: FYI. We'll need to remove this once your othe
43 44
44 # All platforms with AMD GPU. 45 # All platforms with AMD GPU.
45 self.Fail('deqp/functional/gles3/multisample.html', 46 self.Fail('deqp/functional/gles3/multisample.html',
46 ['amd'], bug=617290) 47 ['amd'], bug=617290)
47 48
48 # Windows only. 49 # Windows only.
50 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html',
51 ['win'], bug=638470)
49 52
50 # This should be fixed in the latest driver. 53 # This should be fixed in the latest driver.
51 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', 54 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html',
52 ['win'], bug=1246) # ANGLE bug. 55 ['win'], bug=1246) # ANGLE bug.
53 56
54 # TODO(jmadill): Remove once we re-land the ANGLE CL. 57 # TODO(jmadill): Remove once we re-land the ANGLE CL.
55 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', 58 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html',
56 ['win'], bug=638313) 59 ['win'], bug=638313)
57 60
58 # Windows 8 only. 61 # Windows 8 only.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 ['mac'], bug=630800) 188 ['mac'], bug=630800)
186 # self.Fail('deqp/functional/gles3/fbocompleteness.html', 189 # self.Fail('deqp/functional/gles3/fbocompleteness.html',
187 # ['mac', ('nvidia', 0xfe9)], bug=616562) 190 # ['mac', ('nvidia', 0xfe9)], bug=616562)
188 191
189 self.Fail('deqp/data/gles3/shaders/linkage.html', 192 self.Fail('deqp/data/gles3/shaders/linkage.html',
190 ['mac'], bug=641129) 193 ['mac'], bug=641129)
191 194
192 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', 195 self.Fail('deqp/functional/gles3/uniformbuffers/random.html',
193 ['mac'], bug=618464) 196 ['mac'], bug=618464)
194 197
198 self.Fail('conformance2/rendering/rgb-format-support.html',
199 ['mac'], bug=483282)
200
201 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html',
202 ['mac'], bug=638470)
195 # This is due to "centroid out" / "in" mismatch. 203 # This is due to "centroid out" / "in" mismatch.
196 self.Fail('deqp/data/gles3/shaders/qualification_order.html', 204 self.Fail('deqp/data/gles3/shaders/qualification_order.html',
197 ['mac'], bug=483282) 205 ['mac'], bug=483282)
198 206
199 self.Fail('conformance2/renderbuffers/framebuffer-test.html', 207 self.Fail('conformance2/renderbuffers/framebuffer-test.html',
200 ['mac'], bug=641149) 208 ['mac'], bug=641149)
201 209
202 self.Fail('deqp/functional/gles3/fbomultisample*', 210 self.Fail('deqp/functional/gles3/fbomultisample*',
203 ['mac'], bug=641209) 211 ['mac'], bug=641209)
204 212
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 self.Fail('conformance/textures/webgl_canvas/' + 512 self.Fail('conformance/textures/webgl_canvas/' +
505 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', 513 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
506 ['linux', 'opengl'], bug=483282) 514 ['linux', 'opengl'], bug=483282)
507 self.Fail('conformance2/textures/misc/tex-unpack-params.html', 515 self.Fail('conformance2/textures/misc/tex-unpack-params.html',
508 ['linux', 'opengl'], bug=483282) 516 ['linux', 'opengl'], bug=483282)
509 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', 517 self.Fail('conformance2/reading/read-pixels-pack-parameters.html',
510 ['linux', 'opengl'], bug=483282) 518 ['linux', 'opengl'], bug=483282)
511 519
512 # Linux NVIDIA only. 520 # Linux NVIDIA only.
513 # La la la la la la la la la la ... 521 # La la la la la la la la la la ...
522 self.Fail('conformance2/misc/getextension-while-pbo-bound-stability.html',
523 ['linux', 'nvidia'], bug=483282)
514 524
515 # Linux NVIDIA with ANGLE only 525 # Linux NVIDIA with ANGLE only
516 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', 526 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html',
517 ['linux', 'nvidia', 'opengl'], bug=483282) 527 ['linux', 'nvidia', 'opengl'], bug=483282)
518 self.Fail('deqp/functional/gles3/buffercopy.html', 528 self.Fail('deqp/functional/gles3/buffercopy.html',
519 ['linux', 'nvidia', 'opengl'], bug=483282) 529 ['linux', 'nvidia', 'opengl'], bug=483282)
520 self.Fail('deqp/functional/gles3/bufferobjectquery.html', 530 self.Fail('deqp/functional/gles3/bufferobjectquery.html',
521 ['linux', 'nvidia', 'opengl'], bug=483282) 531 ['linux', 'nvidia', 'opengl'], bug=483282)
522 self.Fail('conformance2/transform_feedback/transform_feedback.html', 532 self.Fail('conformance2/transform_feedback/transform_feedback.html',
523 ['linux', 'nvidia', 'opengl'], bug=483282) 533 ['linux', 'nvidia', 'opengl'], bug=483282)
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 # self.Fail(page_name, 880 # self.Fail(page_name,
871 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 881 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
872 # self.Fail(page_name, 882 # self.Fail(page_name,
873 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 883 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
874 884
875 # Conflicts if between a generic os condition and a specific version 885 # Conflicts if between a generic os condition and a specific version
876 # self.Fail(page_name, 886 # self.Fail(page_name,
877 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 887 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
878 # self.Fail(page_name, 888 # self.Fail(page_name,
879 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 889 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698