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

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

Issue 2753643002: Suppress a WebGL2 flaky test on Linux AMD R7 240 (Closed)
Patch Set: Created 3 years, 9 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, 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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 ['linux', 'amd'], bug=483282) 997 ['linux', 'amd'], bug=483282)
998 self.Fail('conformance2/buffers/uniform-buffers.html', 998 self.Fail('conformance2/buffers/uniform-buffers.html',
999 ['linux', 'amd'], bug=658842) 999 ['linux', 'amd'], bug=658842)
1000 self.Fail('conformance2/rendering/uniform-block-buffer-size.html', 1000 self.Fail('conformance2/rendering/uniform-block-buffer-size.html',
1001 ['linux', 'amd'], bug=658844) 1001 ['linux', 'amd'], bug=658844)
1002 1002
1003 # Linux AMD R7 240 1003 # Linux AMD R7 240
1004 self.Fail('conformance2/textures/image_bitmap_from_video/' + 1004 self.Fail('conformance2/textures/image_bitmap_from_video/' +
1005 'tex-2d-rgba16f-rgba-half_float.html', 1005 'tex-2d-rgba16f-rgba-half_float.html',
1006 ['linux', ('amd', 0x6613)], bug=701138) 1006 ['linux', ('amd', 0x6613)], bug=701138)
1007 self.Fail('conformance2/textures/image_bitmap_from_video/' +
1008 'tex-2d-rgba32f-rgba-float.html',
1009 ['linux', ('amd', 0x6613)], bug=701138)
1007 1010
1008 # Conflicting expectations to test that the 1011 # Conflicting expectations to test that the
1009 # "Expectations have no collisions" unittest works. 1012 # "Expectations have no collisions" unittest works.
1010 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' 1013 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html'
1011 1014
1012 # Conflict when all conditions match 1015 # Conflict when all conditions match
1013 # self.Fail(page_name, 1016 # self.Fail(page_name,
1014 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1017 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
1015 # self.Fail(page_name, 1018 # self.Fail(page_name,
1016 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1019 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 # self.Fail(page_name, 1065 # self.Fail(page_name,
1063 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1066 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
1064 # self.Fail(page_name, 1067 # self.Fail(page_name,
1065 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1068 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
1066 1069
1067 # Conflicts if between a generic os condition and a specific version 1070 # Conflicts if between a generic os condition and a specific version
1068 # self.Fail(page_name, 1071 # self.Fail(page_name,
1069 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 1072 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
1070 # self.Fail(page_name, 1073 # self.Fail(page_name,
1071 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1074 # ['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