| 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 self.Fail('conformance2/textures/image/' + | 705 self.Fail('conformance2/textures/image/' + |
| 706 'tex-3d-rg8ui-rg_integer-unsigned_byte.html', | 706 'tex-3d-rg8ui-rg_integer-unsigned_byte.html', |
| 707 ['linux', ('nvidia', 0xf02)], bug=680282) | 707 ['linux', ('nvidia', 0xf02)], bug=680282) |
| 708 self.Flaky('conformance2/textures/image_bitmap_from_image_data/' + | 708 self.Flaky('conformance2/textures/image_bitmap_from_image_data/' + |
| 709 'tex-2d-srgb8-rgb-unsigned_byte.html', | 709 'tex-2d-srgb8-rgb-unsigned_byte.html', |
| 710 ['linux', 'nvidia'], bug=694354) | 710 ['linux', 'nvidia'], bug=694354) |
| 711 | 711 |
| 712 # Linux NVIDIA Quadro P400 | 712 # Linux NVIDIA Quadro P400 |
| 713 self.Fail('deqp/functional/gles3/multisample.html', | 713 self.Fail('deqp/functional/gles3/multisample.html', |
| 714 ['linux', ('nvidia', 0x1cb3)], bug=702861) | 714 ['linux', ('nvidia', 0x1cb3)], bug=702861) |
| 715 # This test causes a lost device and then the next test fails. |
| 716 self.Skip('conformance2/rendering/blitframebuffer-size-overflow.html', |
| 717 ['linux', ('nvidia', 0x1cb3)], bug=709320) |
| 715 | 718 |
| 716 # Linux Intel | 719 # Linux Intel |
| 717 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 720 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 718 ['linux', 'intel'], bug=640389) | 721 ['linux', 'intel'], bug=640389) |
| 719 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', | 722 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', |
| 720 ['linux', 'intel'], bug=687210) | 723 ['linux', 'intel'], bug=687210) |
| 721 | 724 |
| 722 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 725 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 723 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 726 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 724 ['linux', 'intel'], bug=540543) # GPU timeout | 727 ['linux', 'intel'], bug=540543) # GPU timeout |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1078 # self.Fail(page_name, | 1081 # self.Fail(page_name, |
| 1079 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1082 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1080 # self.Fail(page_name, | 1083 # self.Fail(page_name, |
| 1081 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1084 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1082 | 1085 |
| 1083 # Conflicts if between a generic os condition and a specific version | 1086 # Conflicts if between a generic os condition and a specific version |
| 1084 # self.Fail(page_name, | 1087 # self.Fail(page_name, |
| 1085 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1088 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1086 # self.Fail(page_name, | 1089 # self.Fail(page_name, |
| 1087 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1090 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |