| 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): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 ['linux', 'amd'], bug=483282) | 650 ['linux', 'amd'], bug=483282) |
| 651 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 651 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 652 ['linux', 'amd'], bug=483282) | 652 ['linux', 'amd'], bug=483282) |
| 653 | 653 |
| 654 self.Fail('conformance2/misc/uninitialized-test-2.html', | 654 self.Fail('conformance2/misc/uninitialized-test-2.html', |
| 655 ['linux', 'amd'], bug=483282) | 655 ['linux', 'amd'], bug=483282) |
| 656 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', | 656 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', |
| 657 ['linux', 'amd'], bug=483282) | 657 ['linux', 'amd'], bug=483282) |
| 658 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', | 658 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', |
| 659 ['linux', 'amd'], bug=634525) | 659 ['linux', 'amd'], bug=634525) |
| 660 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 661 ['linux', 'amd'], bug=644740) |
| 660 self.Fail('conformance2/renderbuffers/framebuffer-texture-layer.html', | 662 self.Fail('conformance2/renderbuffers/framebuffer-texture-layer.html', |
| 661 ['linux', 'amd'], bug=295792) | 663 ['linux', 'amd'], bug=295792) |
| 662 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | 664 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 663 ['linux', 'amd'], bug=483282) | 665 ['linux', 'amd'], bug=483282) |
| 664 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', | 666 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', |
| 665 ['linux', 'amd'], bug=483282) | 667 ['linux', 'amd'], bug=483282) |
| 666 | 668 |
| 667 self.Fail('deqp/functional/gles3/texturespecification/' + | 669 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 668 'teximage2d_pbo_cube_00.html', | 670 'teximage2d_pbo_cube_00.html', |
| 669 ['linux', 'amd'], bug=483282) | 671 ['linux', 'amd'], bug=483282) |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 # self.Fail(page_name, | 874 # self.Fail(page_name, |
| 873 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 875 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 874 # self.Fail(page_name, | 876 # self.Fail(page_name, |
| 875 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 877 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 876 | 878 |
| 877 # Conflicts if between a generic os condition and a specific version | 879 # Conflicts if between a generic os condition and a specific version |
| 878 # self.Fail(page_name, | 880 # self.Fail(page_name, |
| 879 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 881 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 880 # self.Fail(page_name, | 882 # self.Fail(page_name, |
| 881 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 883 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |