| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 self.Flaky('deqp/*', ['win', 'intel', 'd3d11'], bug=628395) | 216 self.Flaky('deqp/*', ['win', 'intel', 'd3d11'], bug=628395) |
| 217 | 217 |
| 218 # Mac only. | 218 # Mac only. |
| 219 | 219 |
| 220 # Fails on all GPU types. | 220 # Fails on all GPU types. |
| 221 self.Flaky('conformance/context/context-release-upon-reload.html', | 221 self.Flaky('conformance/context/context-release-upon-reload.html', |
| 222 ['mac'], bug=713829) | 222 ['mac'], bug=713829) |
| 223 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 223 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
| 224 ['mac'], bug=709351) | 224 ['mac'], bug=709351) |
| 225 self.Fail('conformance2/rendering/' + | 225 self.Fail('conformance2/rendering/' + |
| 226 'blitframebuffer-resolve-to-back-buffer.html', | |
| 227 ['mac'], bug=699566) | |
| 228 self.Fail('conformance2/rendering/' + | |
| 229 'framebuffer-completeness-unaffected.html', | 226 'framebuffer-completeness-unaffected.html', |
| 230 ['mac'], bug=630800) | 227 ['mac'], bug=630800) |
| 231 self.Fail('deqp/functional/gles3/fbocompleteness.html', | 228 self.Fail('deqp/functional/gles3/fbocompleteness.html', |
| 232 ['mac'], bug=630800) | 229 ['mac'], bug=630800) |
| 233 self.Fail('deqp/functional/gles3/sync.html', ['mac'], bug=676848) | 230 self.Fail('deqp/functional/gles3/sync.html', ['mac'], bug=676848) |
| 234 # self.Fail('deqp/functional/gles3/fbocompleteness.html', | 231 # self.Fail('deqp/functional/gles3/fbocompleteness.html', |
| 235 # ['mac', ('nvidia', 0xfe9)], bug=616562) | 232 # ['mac', ('nvidia', 0xfe9)], bug=616562) |
| 236 | 233 |
| 237 self.Fail('conformance2/renderbuffers/framebuffer-test.html', | 234 self.Fail('conformance2/renderbuffers/framebuffer-test.html', |
| 238 ['mac'], bug=641149) | 235 ['mac'], bug=641149) |
| (...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1123 # self.Fail(page_name, | 1120 # self.Fail(page_name, |
| 1124 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1121 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1125 # self.Fail(page_name, | 1122 # self.Fail(page_name, |
| 1126 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1123 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1127 | 1124 |
| 1128 # Conflicts if between a generic os condition and a specific version | 1125 # Conflicts if between a generic os condition and a specific version |
| 1129 # self.Fail(page_name, | 1126 # self.Fail(page_name, |
| 1130 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1127 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1131 # self.Fail(page_name, | 1128 # self.Fail(page_name, |
| 1132 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1129 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |