| 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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 ['linux', 'amd'], bug=483282) | 1025 ['linux', 'amd'], bug=483282) |
| 1026 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 1026 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 1027 ['linux', 'amd', 'no_angle'], bug=483282) | 1027 ['linux', 'amd', 'no_angle'], bug=483282) |
| 1028 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 1028 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 1029 ['linux', 'amd', 'no_angle'], bug=483282) | 1029 ['linux', 'amd', 'no_angle'], bug=483282) |
| 1030 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 1030 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 1031 ['linux', 'amd'], bug=633022) | 1031 ['linux', 'amd'], bug=633022) |
| 1032 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 1032 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 1033 ['linux', 'amd'], bug=655147) | 1033 ['linux', 'amd'], bug=655147) |
| 1034 | 1034 |
| 1035 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', |
| 1036 ['linux', 'amd'], bug=705865) |
| 1037 self.Fail('conformance2/textures/image/' + |
| 1038 'tex-2d-r11f_g11f_b10f-rgb-float.html', |
| 1039 ['linux', 'amd'], bug=705865) |
| 1040 |
| 1035 # Uniform buffer related failures | 1041 # Uniform buffer related failures |
| 1036 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', | 1042 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', |
| 1037 ['linux', 'amd'], bug=483282) | 1043 ['linux', 'amd'], bug=483282) |
| 1038 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', | 1044 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', |
| 1039 ['linux', 'amd'], bug=483282) | 1045 ['linux', 'amd'], bug=483282) |
| 1040 self.Fail('deqp/functional/gles3/uniformbuffers/' + | 1046 self.Fail('deqp/functional/gles3/uniformbuffers/' + |
| 1041 'single_nested_struct_array.html', | 1047 'single_nested_struct_array.html', |
| 1042 ['linux', 'amd'], bug=483282) | 1048 ['linux', 'amd'], bug=483282) |
| 1043 self.Fail('deqp/functional/gles3/uniformbuffers/multi_basic_types.html', | 1049 self.Fail('deqp/functional/gles3/uniformbuffers/multi_basic_types.html', |
| 1044 ['linux', 'amd'], bug=483282) | 1050 ['linux', 'amd'], bug=483282) |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 # self.Fail(page_name, | 1150 # self.Fail(page_name, |
| 1145 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1151 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1146 # self.Fail(page_name, | 1152 # self.Fail(page_name, |
| 1147 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1153 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1148 | 1154 |
| 1149 # Conflicts if between a generic os condition and a specific version | 1155 # Conflicts if between a generic os condition and a specific version |
| 1150 # self.Fail(page_name, | 1156 # self.Fail(page_name, |
| 1151 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1157 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1152 # self.Fail(page_name, | 1158 # self.Fail(page_name, |
| 1153 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1159 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |