| 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 ['linux', 'nvidia'], bug=679677) | 702 ['linux', 'nvidia'], bug=679677) |
| 703 self.Fail('conformance2/rendering/framebuffer-texture-level1.html', | 703 self.Fail('conformance2/rendering/framebuffer-texture-level1.html', |
| 704 ['linux', 'nvidia', 'opengl'], bug=680278) | 704 ['linux', 'nvidia', 'opengl'], bug=680278) |
| 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 M2000 |
| 713 self.Fail('deqp/functional/gles3/multisample.html', |
| 714 ['linux', ('nvidia', 0x1430)], bug=702861) |
| 715 |
| 712 # Linux Intel | 716 # Linux Intel |
| 713 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 717 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 714 ['linux', 'intel'], bug=640389) | 718 ['linux', 'intel'], bug=640389) |
| 715 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', | 719 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', |
| 716 ['linux', 'intel'], bug=687210) | 720 ['linux', 'intel'], bug=687210) |
| 717 | 721 |
| 718 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 722 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 719 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 723 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 720 ['linux', 'intel'], bug=540543) # GPU timeout | 724 ['linux', 'intel'], bug=540543) # GPU timeout |
| 721 | 725 |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 # self.Fail(page_name, | 1078 # self.Fail(page_name, |
| 1075 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1079 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1076 # self.Fail(page_name, | 1080 # self.Fail(page_name, |
| 1077 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1081 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1078 | 1082 |
| 1079 # Conflicts if between a generic os condition and a specific version | 1083 # Conflicts if between a generic os condition and a specific version |
| 1080 # self.Fail(page_name, | 1084 # self.Fail(page_name, |
| 1081 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1085 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1082 # self.Fail(page_name, | 1086 # self.Fail(page_name, |
| 1083 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1087 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |