| 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 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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']) |
| OLD | NEW |