| 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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 ['linux', 'amd'], bug=483282) | 798 ['linux', 'amd'], bug=483282) |
| 799 | 799 |
| 800 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 800 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 801 ['linux', 'amd'], bug=483282) | 801 ['linux', 'amd'], bug=483282) |
| 802 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 802 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 803 ['linux', 'amd', 'no_angle'], bug=483282) | 803 ['linux', 'amd', 'no_angle'], bug=483282) |
| 804 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 804 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 805 ['linux', 'amd', 'no_angle'], bug=483282) | 805 ['linux', 'amd', 'no_angle'], bug=483282) |
| 806 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 806 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 807 ['linux', 'amd'], bug=633022) | 807 ['linux', 'amd'], bug=633022) |
| 808 self.Flaky('conformance2/buffers/uniform-buffers.html', | 808 self.Fail('conformance2/buffers/uniform-buffers.html', |
| 809 ['linux', 'amd'], bug=658842) | 809 ['linux', 'amd'], bug=658842) |
| 810 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 810 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 811 ['linux', 'amd'], bug=655147) | 811 ['linux', 'amd'], bug=655147) |
| 812 self.Flaky('conformance2/rendering/uniform-block-buffer-size.html', | 812 self.Fail('conformance2/rendering/uniform-block-buffer-size.html', |
| 813 ['linux', 'amd'], bug=658844) | 813 ['linux', 'amd'], bug=658844) |
| 814 | 814 |
| 815 # Conflicting expectations to test that the | 815 # Conflicting expectations to test that the |
| 816 # "Expectations Have No collisions" unittest works. | 816 # "Expectations Have No collisions" unittest works. |
| 817 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' | 817 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' |
| 818 | 818 |
| 819 # Conflict when all conditions match | 819 # Conflict when all conditions match |
| 820 # self.Fail(page_name, | 820 # self.Fail(page_name, |
| 821 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 821 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 822 # self.Fail(page_name, | 822 # self.Fail(page_name, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 # self.Fail(page_name, | 869 # self.Fail(page_name, |
| 870 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 870 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 871 # self.Fail(page_name, | 871 # self.Fail(page_name, |
| 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 873 | 873 |
| 874 # Conflicts if between a generic os condition and a specific version | 874 # Conflicts if between a generic os condition and a specific version |
| 875 # self.Fail(page_name, | 875 # self.Fail(page_name, |
| 876 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 876 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 877 # self.Fail(page_name, | 877 # self.Fail(page_name, |
| 878 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 878 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |