| 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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 ['linux', 'amd'], bug=483282) | 804 ['linux', 'amd'], bug=483282) |
| 805 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html', | 805 self.Fail('deqp/functional/gles3/shaderoperator/unary_operator_02.html', |
| 806 ['linux', 'amd'], bug=483282) | 806 ['linux', 'amd'], bug=483282) |
| 807 | 807 |
| 808 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', | 808 self.Fail('conformance2/glsl3/vector-dynamic-indexing.html', |
| 809 ['linux', 'amd'], bug=483282) | 809 ['linux', 'amd'], bug=483282) |
| 810 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 810 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 811 ['linux', 'amd', 'no_angle'], bug=483282) | 811 ['linux', 'amd', 'no_angle'], bug=483282) |
| 812 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 812 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 813 ['linux', 'amd', 'no_angle'], bug=483282) | 813 ['linux', 'amd', 'no_angle'], bug=483282) |
| 814 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 815 ['linux', 'amd'], bug=633022) |
| 814 | 816 |
| 815 # Conflicting expectations to test that the | 817 # Conflicting expectations to test that the |
| 816 # "Expectations Have No collisions" unittest works. | 818 # "Expectations Have No collisions" unittest works. |
| 817 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' | 819 # page_name = 'conformance/glsl/constructors/glsl-construct-ivec4.html' |
| 818 | 820 |
| 819 # Conflict when all conditions match | 821 # Conflict when all conditions match |
| 820 # self.Fail(page_name, | 822 # self.Fail(page_name, |
| 821 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 823 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 822 # self.Fail(page_name, | 824 # self.Fail(page_name, |
| 823 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 825 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 # self.Fail(page_name, | 871 # self.Fail(page_name, |
| 870 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 872 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 871 # self.Fail(page_name, | 873 # self.Fail(page_name, |
| 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 874 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 873 | 875 |
| 874 # Conflicts if between a generic os condition and a specific version | 876 # Conflicts if between a generic os condition and a specific version |
| 875 # self.Fail(page_name, | 877 # self.Fail(page_name, |
| 876 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 878 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 877 # self.Fail(page_name, | 879 # self.Fail(page_name, |
| 878 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 880 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |