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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 self.Flaky('conformance/textures/video/' + | 689 self.Flaky('conformance/textures/video/' + |
690 'tex-2d-rgb-rgb-unsigned_byte.html', | 690 'tex-2d-rgb-rgb-unsigned_byte.html', |
691 ['linux'], bug=627525) | 691 ['linux'], bug=627525) |
692 self.Flaky('conformance/textures/video/' + | 692 self.Flaky('conformance/textures/video/' + |
693 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | 693 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
694 ['linux'], bug=627525) | 694 ['linux'], bug=627525) |
695 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', | 695 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', |
696 ['linux'], bug=483282) | 696 ['linux'], bug=483282) |
697 self.Fail('conformance2/textures/image_bitmap_from_image/' + | 697 self.Fail('conformance2/textures/image_bitmap_from_image/' + |
698 'tex-3d-r16f-red-float.html', ['linux'], bug=679695) | 698 'tex-3d-r16f-red-float.html', ['linux'], bug=679695) |
| 699 self.Fail('conformance2/textures/canvas_sub_rectangle/' + |
| 700 'tex-2d-rgb16f-rgb-float.html', ['linux'], bug=715696) |
699 | 701 |
700 # Linux Multi-vendor failures. | 702 # Linux Multi-vendor failures. |
701 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 703 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
702 ['linux', 'amd', 'intel'], bug=483282) | 704 ['linux', 'amd', 'intel'], bug=483282) |
703 self.Flaky('deqp/functional/gles3/texturespecification/' + | 705 self.Flaky('deqp/functional/gles3/texturespecification/' + |
704 'random_teximage2d_2d.html', | 706 'random_teximage2d_2d.html', |
705 ['linux', 'amd', 'intel'], bug=618447) | 707 ['linux', 'amd', 'intel'], bug=618447) |
706 self.Fail('conformance2/rendering/clipping-wide-points.html', | 708 self.Fail('conformance2/rendering/clipping-wide-points.html', |
707 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 | 709 ['linux', 'amd', 'intel'], bug=662644) # WebGL 2.0.1 |
708 | 710 |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 # self.Fail(page_name, | 1141 # self.Fail(page_name, |
1140 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1142 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
1141 # self.Fail(page_name, | 1143 # self.Fail(page_name, |
1142 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1144 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
1143 | 1145 |
1144 # Conflicts if between a generic os condition and a specific version | 1146 # Conflicts if between a generic os condition and a specific version |
1145 # self.Fail(page_name, | 1147 # self.Fail(page_name, |
1146 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1148 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
1147 # self.Fail(page_name, | 1149 # self.Fail(page_name, |
1148 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1150 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |