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

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

Issue 2435803004: Initialize buffers before allowing access to them. (Closed)
Patch Set: win failure 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
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html', 54 self.Fail('deqp/functional/gles3/framebufferblit/conversion_33.html',
55 ['mac'], bug=654187) 55 ['mac'], bug=654187)
56 56
57 # All platforms. 57 # All platforms.
58 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html', 58 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html',
59 bug=657853) 59 bug=657853)
60 self.Fail('conformance2/glsl3/uniform-block-layouts.html', 60 self.Fail('conformance2/glsl3/uniform-block-layouts.html',
61 bug=657859) 61 bug=657859)
62 self.Fail('conformance2/context/methods-2.html', bug=616554) 62 self.Fail('conformance2/context/methods-2.html', bug=616554)
63 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 63 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
64 self.Fail('conformance/buffers/buffer-uninitialized.html',
65 bug=654201)
66 self.Fail('conformance2/transform_feedback/transform_feedback.html',
67 bug=654201)
68 64
69 # Windows only. 65 # Windows only.
70 # We are awesome! 66 # We are awesome!
71 self.Fail('conformance2/buffers/get-buffer-sub-data.html', 67 self.Fail('deqp/functional/gles3/pixelbufferobject.html',
72 ['win'], bug=654201) 68 ['win'], bug=1555) # ANGLE bug.
73 69
74 # Win / NVidia 70 # Win / NVidia
75 self.Flaky('deqp/functional/gles3/fbomultisample*', 71 self.Flaky('deqp/functional/gles3/fbomultisample*',
76 ['win', 'nvidia'], bug=631317) 72 ['win', 'nvidia'], bug=631317)
77 73
78 # This should be fixed in the latest driver. 74 # This should be fixed in the latest driver.
79 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html', 75 self.Fail('deqp/functional/gles3/fboinvalidate/sub.html',
80 ['win', 'nvidia'], bug=1246) # ANGLE bug. 76 ['win', 'nvidia'], bug=1246) # ANGLE bug.
81 77
82 # Win / AMD 78 # Win / AMD
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', 491 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html',
496 ['mac', 'intel'], bug=483282) 492 ['mac', 'intel'], bug=483282)
497 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', 493 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html',
498 ['mac', 'intel'], bug=483282) 494 ['mac', 'intel'], bug=483282)
499 495
500 # Fixed on OSX 10.11 496 # Fixed on OSX 10.11
501 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', 497 self.Fail('deqp/functional/gles3/uniformbuffers/random.html',
502 ['mac', 'intel'], bug=618464) 498 ['mac', 'intel'], bug=618464)
503 499
504 # Linux only. 500 # Linux only.
505 self.Fail('conformance2/buffers/get-buffer-sub-data.html',
506 ['linux'], bug=654201)
507
508 self.Flaky('conformance/textures/video/' + 501 self.Flaky('conformance/textures/video/' +
509 'tex-2d-rgba-rgba-unsigned_byte.html', 502 'tex-2d-rgba-rgba-unsigned_byte.html',
510 ['linux'], bug=627525) 503 ['linux'], bug=627525)
511 self.Flaky('conformance/textures/video/' + 504 self.Flaky('conformance/textures/video/' +
512 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', 505 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html',
513 ['linux'], bug=627525) 506 ['linux'], bug=627525)
514 self.Flaky('conformance/textures/video/' + 507 self.Flaky('conformance/textures/video/' +
515 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', 508 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html',
516 ['linux'], bug=627525) 509 ['linux'], bug=627525)
517 self.Flaky('conformance/textures/video/' + 510 self.Flaky('conformance/textures/video/' +
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 # self.Fail(page_name, 869 # self.Fail(page_name,
877 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 870 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
878 # self.Fail(page_name, 871 # self.Fail(page_name,
879 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
880 873
881 # Conflicts if between a generic os condition and a specific version 874 # Conflicts if between a generic os condition and a specific version
882 # self.Fail(page_name, 875 # self.Fail(page_name,
883 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 876 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
884 # self.Fail(page_name, 877 # self.Fail(page_name,
885 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 878 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698