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 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 ['linux', 'intel'], bug=680720) | 821 ['linux', 'intel'], bug=680720) |
822 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html', | 822 self.Fail('deqp/functional/gles3/framebufferblit/conversion_34.html', |
823 ['linux', 'intel'], bug=680720) | 823 ['linux', 'intel'], bug=680720) |
824 self.Fail('deqp/functional/gles3/framebufferblit/' + | 824 self.Fail('deqp/functional/gles3/framebufferblit/' + |
825 'default_framebuffer_00.html', | 825 'default_framebuffer_00.html', |
826 ['linux', 'intel'], bug=680720) | 826 ['linux', 'intel'], bug=680720) |
827 self.Fail('conformance2/glsl3/' + | 827 self.Fail('conformance2/glsl3/' + |
828 'vector-dynamic-indexing-swizzled-lvalue.html', | 828 'vector-dynamic-indexing-swizzled-lvalue.html', |
829 ['linux', 'intel'], bug=709874) | 829 ['linux', 'intel'], bug=709874) |
830 | 830 |
| 831 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_04.html', |
| 832 ['linux', 'intel'], bug=715881) |
| 833 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_05.html', |
| 834 ['linux', 'intel'], bug=715881) |
| 835 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_08.html', |
| 836 ['linux', 'intel'], bug=715881) |
| 837 self.Fail('deqp/functional/gles3/texturefiltering/3d_formats_09.html', |
| 838 ['linux', 'intel'], bug=715881) |
| 839 |
831 # Linux AMD only. | 840 # Linux AMD only. |
832 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 841 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
833 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 842 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
834 ['linux', 'amd'], bug=483282) | 843 ['linux', 'amd'], bug=483282) |
835 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 844 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
836 ['linux', 'amd'], bug=709351) | 845 ['linux', 'amd'], bug=709351) |
837 self.Fail('deqp/functional/gles3/multisample.html', | 846 self.Fail('deqp/functional/gles3/multisample.html', |
838 ['linux', 'amd'], bug=617290) | 847 ['linux', 'amd'], bug=617290) |
839 self.Fail('deqp/data/gles3/shaders/conversions.html', | 848 self.Fail('deqp/data/gles3/shaders/conversions.html', |
840 ['linux', 'amd'], bug=483282) | 849 ['linux', 'amd'], bug=483282) |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1136 # self.Fail(page_name, | 1145 # self.Fail(page_name, |
1137 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1146 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1138 # self.Fail(page_name, | 1147 # self.Fail(page_name, |
1139 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1148 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1140 | 1149 |
1141 # Conflicts if between a generic os condition and a specific version | 1150 # Conflicts if between a generic os condition and a specific version |
1142 # self.Fail(page_name, | 1151 # self.Fail(page_name, |
1143 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1152 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1144 # self.Fail(page_name, | 1153 # self.Fail(page_name, |
1145 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1154 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |