| 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 # Linux Multi-vendor failures. | 715 # Linux Multi-vendor failures. |
| 716 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 716 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 717 ['linux', 'amd', 'intel'], bug=483282) | 717 ['linux', 'amd', 'intel'], bug=483282) |
| 718 self.Flaky('deqp/functional/gles3/texturespecification/' + | 718 self.Flaky('deqp/functional/gles3/texturespecification/' + |
| 719 'random_teximage2d_2d.html', | 719 'random_teximage2d_2d.html', |
| 720 ['linux', 'amd', 'intel'], bug=618447) | 720 ['linux', 'amd', 'intel'], bug=618447) |
| 721 self.Fail('conformance2/rendering/clipping-wide-points.html', | 721 self.Fail('conformance2/rendering/clipping-wide-points.html', |
| 722 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 | 722 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 |
| 723 | 723 |
| 724 # Linux NVIDIA | 724 # Linux NVIDIA |
| 725 # Explicitly specifying GT 610 to avoid conflict with Quadro P400 rule | |
| 726 self.Flaky('deqp/functional/gles3/multisample.html', | |
| 727 ['linux', ('nvidia', 0x104a)], bug=714207) | |
| 728 | |
| 729 # This test is flaky both with and without ANGLE. | 725 # This test is flaky both with and without ANGLE. |
| 730 self.Flaky('deqp/functional/gles3/texturespecification/' + | 726 self.Flaky('deqp/functional/gles3/texturespecification/' + |
| 731 'random_teximage2d_2d.html', | 727 'random_teximage2d_2d.html', |
| 732 ['linux', 'nvidia'], bug=618447) | 728 ['linux', 'nvidia'], bug=618447) |
| 733 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | 729 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', |
| 734 ['linux', 'nvidia'], bug=672380) | 730 ['linux', 'nvidia'], bug=672380) |
| 735 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', | 731 self.Fail('conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html', |
| 736 ['linux', 'nvidia'], bug=709351) | 732 ['linux', 'nvidia'], bug=709351) |
| 737 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + | 733 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + |
| 738 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', | 734 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1169 # self.Fail(page_name, | 1165 # self.Fail(page_name, |
| 1170 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1166 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1171 # self.Fail(page_name, | 1167 # self.Fail(page_name, |
| 1172 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1168 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1173 | 1169 |
| 1174 # Conflicts if between a generic os condition and a specific version | 1170 # Conflicts if between a generic os condition and a specific version |
| 1175 # self.Fail(page_name, | 1171 # self.Fail(page_name, |
| 1176 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1172 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1177 # self.Fail(page_name, | 1173 # self.Fail(page_name, |
| 1178 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1174 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |