| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 self.Fail('deqp/functional/gles3/shaderderivate.html', | 298 self.Fail('deqp/functional/gles3/shaderderivate.html', |
| 299 ['win', 'intel'], bug=483282) | 299 ['win', 'intel'], bug=483282) |
| 300 self.Fail('deqp/functional/gles3/shaderstruct.html', | 300 self.Fail('deqp/functional/gles3/shaderstruct.html', |
| 301 ['win', 'intel'], bug=483282) | 301 ['win', 'intel'], bug=483282) |
| 302 self.Fail('deqp/functional/gles3/texturespecification/' + | 302 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 303 'teximage3d_depth.html', | 303 'teximage3d_depth.html', |
| 304 ['win', 'intel'], bug=614418) | 304 ['win', 'intel'], bug=614418) |
| 305 self.Skip('deqp/functional/gles3/texturespecification/' + | 305 self.Skip('deqp/functional/gles3/texturespecification/' + |
| 306 'teximage3d_depth_pbo.html', | 306 'teximage3d_depth_pbo.html', |
| 307 ['win', 'intel'], bug=617449) | 307 ['win', 'intel'], bug=617449) |
| 308 self.Flaky('deqp/functional/gles3/lifetime.html', |
| 309 ['win', 'intel'], bug=620379) |
| 308 self.Fail('deqp/functional/gles3/texturespecification/' + | 310 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 309 'texsubimage3d_depth.html', | 311 'texsubimage3d_depth.html', |
| 310 ['win', 'intel'], bug=614418) | 312 ['win', 'intel'], bug=614418) |
| 311 self.Fail('deqp/functional/gles3/texturespecification/' + | 313 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 312 'texstorage3d_format_depth_stencil.html', | 314 'texstorage3d_format_depth_stencil.html', |
| 313 ['win', 'intel'], bug=614418) | 315 ['win', 'intel'], bug=614418) |
| 314 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html', | 316 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html', |
| 315 ['win', 'intel'], bug=614418) | 317 ['win', 'intel'], bug=614418) |
| 316 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html', | 318 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html', |
| 317 ['win', 'intel'], bug=614418) | 319 ['win', 'intel'], bug=614418) |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 # self.Fail(page_name, | 775 # self.Fail(page_name, |
| 774 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 776 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 775 # self.Fail(page_name, | 777 # self.Fail(page_name, |
| 776 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 778 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 777 | 779 |
| 778 # Conflicts if between a generic os condition and a specific version | 780 # Conflicts if between a generic os condition and a specific version |
| 779 # self.Fail(page_name, | 781 # self.Fail(page_name, |
| 780 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 782 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 781 # self.Fail(page_name, | 783 # self.Fail(page_name, |
| 782 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 784 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |