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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 | 219 |
220 # Mac only. | 220 # Mac only. |
221 | 221 |
222 # Regressions in 10.12.4. | 222 # Regressions in 10.12.4. |
223 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', | 223 self.Fail('conformance2/textures/misc/tex-base-level-bug.html', |
224 ['sierra'], bug=705865) | 224 ['sierra'], bug=705865) |
225 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | 225 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
226 ['sierra'], bug=705865) | 226 ['sierra'], bug=705865) |
227 | 227 |
228 # Fails on all GPU types. | 228 # Fails on all GPU types. |
229 self.Flaky('conformance/context/context-release-upon-reload.html', | |
230 ['mac'], bug=713829) | |
231 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 229 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
232 ['mac'], bug=709351) | 230 ['mac'], bug=709351) |
233 self.Fail('conformance2/rendering/' + | 231 self.Fail('conformance2/rendering/' + |
234 'framebuffer-completeness-unaffected.html', | 232 'framebuffer-completeness-unaffected.html', |
235 ['mac'], bug=630800) | 233 ['mac'], bug=630800) |
236 self.Fail('deqp/functional/gles3/fbocompleteness.html', | 234 self.Fail('deqp/functional/gles3/fbocompleteness.html', |
237 ['mac'], bug=630800) | 235 ['mac'], bug=630800) |
238 self.Fail('deqp/functional/gles3/sync.html', ['mac'], bug=676848) | 236 self.Fail('deqp/functional/gles3/sync.html', ['mac'], bug=676848) |
239 # self.Fail('deqp/functional/gles3/fbocompleteness.html', | 237 # self.Fail('deqp/functional/gles3/fbocompleteness.html', |
240 # ['mac', ('nvidia', 0xfe9)], bug=616562) | 238 # ['mac', ('nvidia', 0xfe9)], bug=616562) |
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 # self.Fail(page_name, | 1157 # self.Fail(page_name, |
1160 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1158 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1161 # self.Fail(page_name, | 1159 # self.Fail(page_name, |
1162 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1160 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1163 | 1161 |
1164 # Conflicts if between a generic os condition and a specific version | 1162 # Conflicts if between a generic os condition and a specific version |
1165 # self.Fail(page_name, | 1163 # self.Fail(page_name, |
1166 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1164 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1167 # self.Fail(page_name, | 1165 # self.Fail(page_name, |
1168 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1166 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |