| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) | 62 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) |
| 63 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) | 63 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) |
| 64 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) | 64 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) |
| 65 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) | 65 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) |
| 66 | 66 |
| 67 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) | 67 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) |
| 68 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) | 68 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) |
| 69 # Note that this test fails on ['win', 'intel'] with bug=483282 | 69 # Note that this test fails on ['win', 'intel'] with bug=483282 |
| 70 self.Fail('conformance2/buffers/uniform-buffers.html', bug=577368) | 70 self.Fail('conformance2/buffers/uniform-buffers.html', bug=577368) |
| 71 | 71 |
| 72 # Command buffer side handling of TexSubImage3D is incorrect. | |
| 73 self.Fail('conformance2/textures/misc/tex-storage-and-subimage-3d.html', | |
| 74 bug=570453) | |
| 75 | |
| 76 # Windows only. | 72 # Windows only. |
| 77 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 73 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 78 '-with-canvas-r8-red-unsigned_byte.html', | 74 '-with-canvas-r8-red-unsigned_byte.html', |
| 79 ['win'], bug=483282) | 75 ['win'], bug=483282) |
| 80 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 76 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 81 '-with-canvas-rg8-rg-unsigned_byte.html', | 77 '-with-canvas-rg8-rg-unsigned_byte.html', |
| 82 ['win'], bug=483282) | 78 ['win'], bug=483282) |
| 83 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 79 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 84 '-with-canvas-rgb8-rgb-unsigned_byte.html', | 80 '-with-canvas-rgb8-rgb-unsigned_byte.html', |
| 85 ['win'], bug=483282) | 81 ['win'], bug=483282) |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 # self.Fail(page_name, | 391 # self.Fail(page_name, |
| 396 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 392 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 397 # self.Fail(page_name, | 393 # self.Fail(page_name, |
| 398 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 394 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 399 | 395 |
| 400 # Conflicts if between a generic os condition and a specific version | 396 # Conflicts if between a generic os condition and a specific version |
| 401 # self.Fail(page_name, | 397 # self.Fail(page_name, |
| 402 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 398 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 403 # self.Fail(page_name, | 399 # self.Fail(page_name, |
| 404 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 400 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |