| 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', ('nvidia', 0xf02)], bug=680282) | 715 ['linux', ('nvidia', 0xf02)], bug=680282) |
| 716 self.Fail('conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html'
, | 716 self.Fail('conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html'
, |
| 717 ['linux', 'nvidia'], bug=684399) | 717 ['linux', 'nvidia'], bug=684399) |
| 718 self.Fail('conformance2/textures/image_bitmap_from_blob/' + | 718 self.Fail('conformance2/textures/image_bitmap_from_blob/' + |
| 719 'tex-2d-rgb565-rgb-unsigned_byte.html', | 719 'tex-2d-rgb565-rgb-unsigned_byte.html', |
| 720 ['linux', 'nvidia'], bug=684399) | 720 ['linux', 'nvidia'], bug=684399) |
| 721 | 721 |
| 722 # Linux Intel | 722 # Linux Intel |
| 723 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 723 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 724 ['linux', 'intel'], bug=640389) | 724 ['linux', 'intel'], bug=640389) |
| 725 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', |
| 726 ['linux', 'intel'], bug=687210) |
| 725 | 727 |
| 726 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 728 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 727 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 729 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 728 ['linux', 'intel'], bug=540543) # GPU timeout | 730 ['linux', 'intel'], bug=540543) # GPU timeout |
| 729 | 731 |
| 730 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', | 732 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 731 ['linux', 'intel'], bug=635528) | 733 ['linux', 'intel'], bug=635528) |
| 732 | 734 |
| 733 | 735 |
| 734 self.Fail('conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html', | 736 self.Fail('conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html', |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 # self.Fail(page_name, | 1064 # self.Fail(page_name, |
| 1063 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1065 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1064 # self.Fail(page_name, | 1066 # self.Fail(page_name, |
| 1065 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1067 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1066 | 1068 |
| 1067 # Conflicts if between a generic os condition and a specific version | 1069 # Conflicts if between a generic os condition and a specific version |
| 1068 # self.Fail(page_name, | 1070 # self.Fail(page_name, |
| 1069 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1071 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1070 # self.Fail(page_name, | 1072 # self.Fail(page_name, |
| 1071 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1073 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |