| 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 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 | 838 |
| 839 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_04.html', | 839 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_04.html', |
| 840 ['linux', 'intel'], bug=715881) | 840 ['linux', 'intel'], bug=715881) |
| 841 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_05.html', | 841 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_05.html', |
| 842 ['linux', 'intel'], bug=715881) | 842 ['linux', 'intel'], bug=715881) |
| 843 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_08.html', | 843 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_08.html', |
| 844 ['linux', 'intel'], bug=715881) | 844 ['linux', 'intel'], bug=715881) |
| 845 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_09.html', | 845 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_09.html', |
| 846 ['linux', 'intel'], bug=715881) | 846 ['linux', 'intel'], bug=715881) |
| 847 | 847 |
| 848 # Intermittently running out of memory. |
| 849 self.Flaky('deqp/functional/gles3/texturefiltering/3d_sizes_00.html', |
| 850 ['linux', 'intel'], bug=717023) |
| 851 self.Flaky('deqp/functional/gles3/texturefiltering/3d_sizes_01.html', |
| 852 ['linux', 'intel'], bug=717023) |
| 853 self.Flaky('deqp/functional/gles3/texturefiltering/3d_sizes_02.html', |
| 854 ['linux', 'intel'], bug=717023) |
| 855 self.Flaky('deqp/functional/gles3/texturefiltering/3d_sizes_03.html', |
| 856 ['linux', 'intel'], bug=717023) |
| 857 self.Flaky('deqp/functional/gles3/texturefiltering/3d_sizes_04.html', |
| 858 ['linux', 'intel'], bug=717023) |
| 859 |
| 848 # Linux AMD only. | 860 # Linux AMD only. |
| 849 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 861 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
| 850 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 862 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 851 ['linux', 'amd'], bug=483282) | 863 ['linux', 'amd'], bug=483282) |
| 852 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 864 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
| 853 ['linux', 'amd'], bug=709351) | 865 ['linux', 'amd'], bug=709351) |
| 854 self.Fail('deqp/functional/gles3/multisample.html', | 866 self.Fail('deqp/functional/gles3/multisample.html', |
| 855 ['linux', 'amd'], bug=617290) | 867 ['linux', 'amd'], bug=617290) |
| 856 self.Fail('deqp/data/gles3/shaders/conversions.html', | 868 self.Fail('deqp/data/gles3/shaders/conversions.html', |
| 857 ['linux', 'amd'], bug=483282) | 869 ['linux', 'amd'], bug=483282) |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 # self.Fail(page_name, | 1171 # self.Fail(page_name, |
| 1160 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1172 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1161 # self.Fail(page_name, | 1173 # self.Fail(page_name, |
| 1162 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1174 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1163 | 1175 |
| 1164 # Conflicts if between a generic os condition and a specific version | 1176 # Conflicts if between a generic os condition and a specific version |
| 1165 # self.Fail(page_name, | 1177 # self.Fail(page_name, |
| 1166 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1178 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1167 # self.Fail(page_name, | 1179 # self.Fail(page_name, |
| 1168 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1180 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |