| 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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 717 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 718 ['linux', 'amd', 'no_angle'], bug=483282) | 718 ['linux', 'amd', 'no_angle'], bug=483282) |
| 719 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 719 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 720 ['linux', 'amd'], bug=633022) | 720 ['linux', 'amd'], bug=633022) |
| 721 self.Fail('conformance2/buffers/uniform-buffers.html', | 721 self.Fail('conformance2/buffers/uniform-buffers.html', |
| 722 ['linux', 'amd'], bug=658842) | 722 ['linux', 'amd'], bug=658842) |
| 723 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 723 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 724 ['linux', 'amd'], bug=655147) | 724 ['linux', 'amd'], bug=655147) |
| 725 self.Fail('conformance2/rendering/uniform-block-buffer-size.html', | 725 self.Fail('conformance2/rendering/uniform-block-buffer-size.html', |
| 726 ['linux', 'amd'], bug=658844) | 726 ['linux', 'amd'], bug=658844) |
| 727 self.Fail('conformance2/glsl3/valid-invariant.html', |
| 728 ['linux', 'amd'], bug=639760) |
| 727 | 729 |
| 728 # Conflicting expectations to test that the | 730 # Conflicting expectations to test that the |
| 729 # "Expectations Have No collisions" unittest works. | 731 # "Expectations Have No collisions" unittest works. |
| 730 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' | 732 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' |
| 731 | 733 |
| 732 # Conflict when all conditions match | 734 # Conflict when all conditions match |
| 733 # self.Fail(page_name, | 735 # self.Fail(page_name, |
| 734 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 736 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 735 # self.Fail(page_name, | 737 # self.Fail(page_name, |
| 736 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 738 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 # self.Fail(page_name, | 784 # self.Fail(page_name, |
| 783 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 785 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 784 # self.Fail(page_name, | 786 # self.Fail(page_name, |
| 785 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 787 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 786 | 788 |
| 787 # Conflicts if between a generic os condition and a specific version | 789 # Conflicts if between a generic os condition and a specific version |
| 788 # self.Fail(page_name, | 790 # self.Fail(page_name, |
| 789 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 791 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 790 # self.Fail(page_name, | 792 # self.Fail(page_name, |
| 791 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 793 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |