| 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): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 self.Fail('conformance2/textures/image/tex-image-and-sub-image-3d' + | 260 self.Fail('conformance2/textures/image/tex-image-and-sub-image-3d' + |
| 261 '-with-image-rgb565-rgb-unsigned_byte.html', | 261 '-with-image-rgb565-rgb-unsigned_byte.html', |
| 262 ['win8'], bug=560555) | 262 ['win8'], bug=560555) |
| 263 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + | 263 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + |
| 264 '-with-svg-image-rgb565-rgb-unsigned_byte.html', | 264 '-with-svg-image-rgb565-rgb-unsigned_byte.html', |
| 265 ['win8'], bug=560555) | 265 ['win8'], bug=560555) |
| 266 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + | 266 self.Fail('conformance2/textures/svg_image/tex-image-and-sub-image-3d' + |
| 267 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html', | 267 '-with-svg-image-rgb5_a1-rgba-unsigned_byte.html', |
| 268 ['win8'], bug=560555) | 268 ['win8'], bug=560555) |
| 269 | 269 |
| 270 # Windows Server 2008 | |
| 271 # TODO(geofflang): no specific supression for this OS yet, temporarily | |
| 272 # supress on all windows versions. | |
| 273 self.Fail('conformance2/state/gl-get-calls.html', ['win'], bug=483282) | |
| 274 | |
| 275 # Windows Debug. Causing assertions in the GPU process which raise | 270 # Windows Debug. Causing assertions in the GPU process which raise |
| 276 # a dialog box, so have to skip them rather than mark them as | 271 # a dialog box, so have to skip them rather than mark them as |
| 277 # failing. | 272 # failing. |
| 278 self.Skip('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 273 self.Skip('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 279 '-with-canvas-rgba8-rgba-unsigned_byte.html', | 274 '-with-canvas-rgba8-rgba-unsigned_byte.html', |
| 280 ['win', 'debug'], bug=542901) | 275 ['win', 'debug'], bug=542901) |
| 281 | 276 |
| 282 # Mac only. | 277 # Mac only. |
| 283 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 278 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 284 ['mac'], bug=483282) | 279 ['mac'], bug=483282) |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 # self.Fail(page_name, | 417 # self.Fail(page_name, |
| 423 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 418 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 424 # self.Fail(page_name, | 419 # self.Fail(page_name, |
| 425 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 420 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 426 | 421 |
| 427 # Conflicts if between a generic os condition and a specific version | 422 # Conflicts if between a generic os condition and a specific version |
| 428 # self.Fail(page_name, | 423 # self.Fail(page_name, |
| 429 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 424 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 430 # self.Fail(page_name, | 425 # self.Fail(page_name, |
| 431 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 426 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |