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

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

Issue 2649233009: Fix expectation for WebGL2 conformance test failure on Retina Mac (Closed)
Patch Set: Created 3 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 | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('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, url_prefixes=None, is_asan=False): 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False):
10 super(WebGL2ConformanceExpectations, self).__init__( 10 super(WebGL2ConformanceExpectations, self).__init__(
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 ['mac', ('nvidia', 0xfe9)], bug=483282) 215 ['mac', ('nvidia', 0xfe9)], bug=483282)
216 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', 216 self.Fail('conformance/programs/gl-bind-attrib-location-test.html',
217 ['mac', ('nvidia', 0xfe9)], bug=483282) 217 ['mac', ('nvidia', 0xfe9)], bug=483282)
218 self.Fail('conformance2/glsl3/loops-with-side-effects.html', 218 self.Fail('conformance2/glsl3/loops-with-side-effects.html',
219 ['mac', ('nvidia', 0xfe9)], bug=483282) 219 ['mac', ('nvidia', 0xfe9)], bug=483282)
220 self.Fail('conformance2/textures/misc/tex-input-validation.html', 220 self.Fail('conformance2/textures/misc/tex-input-validation.html',
221 ['mac', ('nvidia', 0xfe9), 'no_angle'], bug=483282) 221 ['mac', ('nvidia', 0xfe9), 'no_angle'], bug=483282)
222 self.Flaky('conformance2/textures/image_bitmap_from_video/' + 222 self.Flaky('conformance2/textures/image_bitmap_from_video/' +
223 'tex-2d-rgba16f-rgba-half_float.html', 223 'tex-2d-rgba16f-rgba-half_float.html',
224 ['mac', ('nvidia', 0xfe9)], bug=682834) 224 ['mac', ('nvidia', 0xfe9)], bug=682834)
225 self.Fail('conformance/uniforms/' +
226 'no-over-optimization-on-uniform-array-12.html',
227 ['mac', ('nvidia', 0xfe9)], bug=684903)
225 228
226 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', 229 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html',
227 ['mac', ('nvidia', 0xfe9)], bug=483282) 230 ['mac', ('nvidia', 0xfe9)], bug=483282)
228 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', 231 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html',
229 ['mac', ('nvidia', 0xfe9)], bug=483282) 232 ['mac', ('nvidia', 0xfe9)], bug=483282)
230 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html', 233 self.Fail('deqp/functional/gles3/framebufferblit/conversion_08.html',
231 ['mac', ('nvidia', 0xfe9)], bug=483282) 234 ['mac', ('nvidia', 0xfe9)], bug=483282)
232 self.Fail('deqp/functional/gles3/framebufferblit/conversion_10.html', 235 self.Fail('deqp/functional/gles3/framebufferblit/conversion_10.html',
233 ['mac', ('nvidia', 0xfe9)], bug=483282) 236 ['mac', ('nvidia', 0xfe9)], bug=483282)
234 self.Fail('deqp/functional/gles3/framebufferblit/conversion_11.html', 237 self.Fail('deqp/functional/gles3/framebufferblit/conversion_11.html',
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 # self.Fail(page_name, 1034 # self.Fail(page_name,
1032 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1035 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
1033 # self.Fail(page_name, 1036 # self.Fail(page_name,
1034 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1037 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
1035 1038
1036 # Conflicts if between a generic os condition and a specific version 1039 # Conflicts if between a generic os condition and a specific version
1037 # self.Fail(page_name, 1040 # self.Fail(page_name,
1038 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 1041 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
1039 # self.Fail(page_name, 1042 # self.Fail(page_name,
1040 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1043 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698