| OLD | NEW |
| 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 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 ['linux', 'amd'], bug=483282) | 993 ['linux', 'amd'], bug=483282) |
| 994 self.Fail('deqp/functional/gles3/uniformbuffers/multi_nested_struct.html', | 994 self.Fail('deqp/functional/gles3/uniformbuffers/multi_nested_struct.html', |
| 995 ['linux', 'amd'], bug=483282) | 995 ['linux', 'amd'], bug=483282) |
| 996 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 996 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 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 |
| 1004 self.Fail('conformance2/textures/image_bitmap_from_video/' + |
| 1005 'tex-2d-rgba16f-rgba-half_float.html', |
| 1006 ['linux', ('amd', 0x6613)], bug=701138) |
| 1007 |
| 1003 # Conflicting expectations to test that the | 1008 # Conflicting expectations to test that the |
| 1004 # "Expectations have no collisions" unittest works. | 1009 # "Expectations have no collisions" unittest works. |
| 1005 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' | 1010 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' |
| 1006 | 1011 |
| 1007 # Conflict when all conditions match | 1012 # Conflict when all conditions match |
| 1008 # self.Fail(page_name, | 1013 # self.Fail(page_name, |
| 1009 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1014 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1010 # self.Fail(page_name, | 1015 # self.Fail(page_name, |
| 1011 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1016 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1012 | 1017 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 # self.Fail(page_name, | 1062 # self.Fail(page_name, |
| 1058 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1063 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1059 # self.Fail(page_name, | 1064 # self.Fail(page_name, |
| 1060 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1065 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1061 | 1066 |
| 1062 # Conflicts if between a generic os condition and a specific version | 1067 # Conflicts if between a generic os condition and a specific version |
| 1063 # self.Fail(page_name, | 1068 # self.Fail(page_name, |
| 1064 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1069 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1065 # self.Fail(page_name, | 1070 # self.Fail(page_name, |
| 1066 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1071 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |