| 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, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 ['linux', 'amd'], bug=483282) | 805 ['linux', 'amd'], bug=483282) |
| 806 self.Fail('deqp/functional/gles3/texturefiltering/3d*', | 806 self.Fail('deqp/functional/gles3/texturefiltering/3d*', |
| 807 ['linux', 'amd'], bug=606114) | 807 ['linux', 'amd'], bug=606114) |
| 808 self.Fail('deqp/functional/gles3/shadertexturefunction/texture.html', | 808 self.Fail('deqp/functional/gles3/shadertexturefunction/texture.html', |
| 809 ['linux', 'amd'], bug=483282) | 809 ['linux', 'amd'], bug=483282) |
| 810 self.Fail('deqp/functional/gles3/shadertexturefunction/texturegrad.html', | 810 self.Fail('deqp/functional/gles3/shadertexturefunction/texturegrad.html', |
| 811 ['linux', 'amd'], bug=483282) | 811 ['linux', 'amd'], bug=483282) |
| 812 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 812 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 813 'texelfetchoffset.html', | 813 'texelfetchoffset.html', |
| 814 ['linux', 'amd'], bug=483282) | 814 ['linux', 'amd'], bug=483282) |
| 815 self.Fail('deqp/functional/gles3/vertexarrays/' + |
| 816 'single_attribute.first.html', |
| 817 ['linux', 'amd'], bug=694877) |
| 815 | 818 |
| 816 self.Fail('deqp/functional/gles3/negativetextureapi.html', | 819 self.Fail('deqp/functional/gles3/negativetextureapi.html', |
| 817 ['linux', 'amd'], bug=483282) | 820 ['linux', 'amd'], bug=483282) |
| 818 self.Fail('deqp/functional/gles3/transformfeedback/array_separate*.html', | 821 self.Fail('deqp/functional/gles3/transformfeedback/array_separate*.html', |
| 819 ['linux', 'amd'], bug=483282) | 822 ['linux', 'amd'], bug=483282) |
| 820 | 823 |
| 821 self.Fail('conformance2/misc/uninitialized-test-2.html', | 824 self.Fail('conformance2/misc/uninitialized-test-2.html', |
| 822 ['linux', 'amd'], bug=483282) | 825 ['linux', 'amd'], bug=483282) |
| 823 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 826 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
| 824 ['linux', 'amd'], bug=483282) | 827 ['linux', 'amd'], bug=483282) |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 # self.Fail(page_name, | 1053 # self.Fail(page_name, |
| 1051 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1054 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1052 # self.Fail(page_name, | 1055 # self.Fail(page_name, |
| 1053 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1056 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1054 | 1057 |
| 1055 # Conflicts if between a generic os condition and a specific version | 1058 # Conflicts if between a generic os condition and a specific version |
| 1056 # self.Fail(page_name, | 1059 # self.Fail(page_name, |
| 1057 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1060 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1058 # self.Fail(page_name, | 1061 # self.Fail(page_name, |
| 1059 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1062 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |