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

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

Issue 2379203002: implement getBufferSubDataAsync prototype (Closed)
Patch Set: Merge branch 'master' into async Created 4 years, 2 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 self.Fail('deqp/functional/gles3/framebufferblit/conversion_28.html', 48 self.Fail('deqp/functional/gles3/framebufferblit/conversion_28.html',
49 ['mac'], bug=654187) 49 ['mac'], bug=654187)
50 self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html', 50 self.Fail('deqp/functional/gles3/framebufferblit/conversion_30.html',
51 ['mac'], bug=654187) 51 ['mac'], bug=654187)
52 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html', 52 self.Fail('deqp/functional/gles3/framebufferblit/conversion_31.html',
53 ['mac'], bug=654187) 53 ['mac'], bug=654187)
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('conformance2/context/methods-2.html', bug=616554)
58 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 59 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
59 60
60 # Windows only. 61 # Windows only.
61 # We are awesome! 62 # We are awesome!
62 self.Fail('conformance2/buffers/getBufferSubData.html', 63 self.Fail('conformance2/buffers/getBufferSubData.html',
63 ['win'], bug=654201) 64 ['win'], bug=654201)
64 65
65 # Win / NVidia 66 # Win / NVidia
66 self.Flaky('deqp/functional/gles3/fbomultisample*', 67 self.Flaky('deqp/functional/gles3/fbomultisample*',
67 ['win', 'nvidia'], bug=631317) 68 ['win', 'nvidia'], bug=631317)
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 # self.Fail(page_name, 889 # self.Fail(page_name,
889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 890 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
890 # self.Fail(page_name, 891 # self.Fail(page_name,
891 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 892 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
892 893
893 # Conflicts if between a generic os condition and a specific version 894 # Conflicts if between a generic os condition and a specific version
894 # self.Fail(page_name, 895 # self.Fail(page_name,
895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 896 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
896 # self.Fail(page_name, 897 # self.Fail(page_name,
897 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 898 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698