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

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

Issue 2249783003: WebGL: Add AMD R7 WebGL 2 Windows expectations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed _ to / Created 4 years, 4 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 | 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ['win', ('amd', 0x6779)], bug=483282) 82 ['win', ('amd', 0x6779)], bug=483282)
83 83
84 self.Fail('deqp/functional/gles3/transformfeedback/*', 84 self.Fail('deqp/functional/gles3/transformfeedback/*',
85 ['win', ('amd', 0x6779)], bug=626068) 85 ['win', ('amd', 0x6779)], bug=626068)
86 86
87 self.Fail('deqp/functional/gles3/shadercommonfunction.html', 87 self.Fail('deqp/functional/gles3/shadercommonfunction.html',
88 ['win', ('amd', 0x6779)], bug=483282) 88 ['win', ('amd', 0x6779)], bug=483282)
89 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', 89 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html',
90 ['win', ('amd', 0x6779)], bug=483282) 90 ['win', ('amd', 0x6779)], bug=483282)
91 91
92 # Keep a separate set of failures for the R7 240, since it can use a new
93 # and updated driver. The older drivers won't ever get fixes from AMD.
94 self.Fail('deqp/functional/gles3/framebufferblit/depth_stencil.html',
95 ['win', ('amd', 0x6613)], bug=638323)
96 self.Fail('deqp/functional/gles3/shadertexturefunction/texture.html',
97 ['win', ('amd', 0x6613)], bug=638323)
98 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html',
99 ['win', ('amd', 0x6613)], bug=638323)
100 self.Fail('deqp/functional/gles3/texturefiltering/2d_array*',
101 ['win', ('amd', 0x6613)], bug=638323)
102 self.Fail('deqp/functional/gles3/texturefiltering/cube*',
103 ['win', ('amd', 0x6613)], bug=638323)
104 self.Fail('deqp/functional/gles3/texturefiltering/'
105 'textureshadow_2d_array_nearest_mipmap_nearest_*',
106 ['win', ('amd', 0x6613)], bug=638323)
107 self.Fail('deqp/functional/gles3/texturefiltering/'
108 'textureshadow_2d_linear_mipmap*',
109 ['win', ('amd', 0x6613)], bug=638323)
110 self.Fail('deqp/functional/gles3/texturefiltering/'
111 'textureshadow_2d_nearest_mipmap_nearest*',
112 ['win', ('amd', 0x6613)], bug=638323)
113 self.Fail('deqp/functional/gles3/texturespecification/'
114 'teximage2d_depth.html',
115 ['win', ('amd', 0x6613)], bug=638323)
116 self.Fail('deqp/functional/gles3/texturespecification/'
117 'texstorage2d_format_depth_stencil.html',
118 ['win', ('amd', 0x6613)], bug=638323)
119 self.Fail('deqp/functional/gles3/texturespecification/'
120 'texstorage3d_format_depth_stencil.html',
121 ['win', ('amd', 0x6613)], bug=638323)
122 self.Fail('deqp/functional/gles3/texturespecification/'
123 'texsubimage2d_depth.html',
124 ['win', ('amd', 0x6613)], bug=638323)
125
92 # It's unfortunate that these suppressions need to be so broad, but 126 # It's unfortunate that these suppressions need to be so broad, but
93 # basically any test that uses readPixels is potentially flaky, and 127 # basically any test that uses readPixels is potentially flaky, and
94 # it's infeasible to suppress individual failures one by one. 128 # it's infeasible to suppress individual failures one by one.
95 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419) 129 self.Flaky('conformance/*', ['win', ('amd', 0x6779)], bug=491419)
96 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) 130 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419)
97 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) 131 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419)
98 132
99 # Win / Intel 133 # Win / Intel
100 self.Fail('conformance2/buffers/uniform-buffers.html', 134 self.Fail('conformance2/buffers/uniform-buffers.html',
101 ['win', 'intel'], bug=483282) 135 ['win', 'intel'], bug=483282)
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 # self.Fail(page_name, 902 # self.Fail(page_name,
869 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 903 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
870 # self.Fail(page_name, 904 # self.Fail(page_name,
871 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 905 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
872 906
873 # Conflicts if between a generic os condition and a specific version 907 # Conflicts if between a generic os condition and a specific version
874 # self.Fail(page_name, 908 # self.Fail(page_name,
875 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 909 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
876 # self.Fail(page_name, 910 # self.Fail(page_name,
877 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 911 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698