| 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): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 557 |
| 558 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 558 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 559 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 559 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 560 ['linux', 'intel'], bug=540543) # GPU timeout | 560 ['linux', 'intel'], bug=540543) # GPU timeout |
| 561 | 561 |
| 562 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', | 562 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 563 ['linux', 'intel'], bug=635528) | 563 ['linux', 'intel'], bug=635528) |
| 564 | 564 |
| 565 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | 565 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 566 ['linux', 'intel'], bug=666384) | 566 ['linux', 'intel'], bug=666384) |
| 567 |
| 568 self.Fail('conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html', |
| 569 ['linux', 'intel'], bug=662644) # WebGL 2.0.1 |
| 570 |
| 567 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html', | 571 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html', |
| 568 ['linux', 'intel'], bug=666384) | 572 ['linux', 'intel'], bug=666384) |
| 569 | 573 |
| 570 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. | 574 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. |
| 571 self.Fail('conformance2/misc/views-with-offsets.html', | 575 self.Fail('conformance2/misc/views-with-offsets.html', |
| 572 ['linux', 'intel', 'no_angle'], bug=664180) | 576 ['linux', 'intel', 'no_angle'], bug=664180) |
| 573 | 577 |
| 574 # Linux Intel with ANGLE only | 578 # Linux Intel with ANGLE only |
| 575 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', | 579 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', |
| 576 ['linux', 'intel', 'opengl'], bug=598902) | 580 ['linux', 'intel', 'opengl'], bug=598902) |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 # self.Fail(page_name, | 846 # self.Fail(page_name, |
| 843 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 847 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 844 # self.Fail(page_name, | 848 # self.Fail(page_name, |
| 845 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 849 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 846 | 850 |
| 847 # Conflicts if between a generic os condition and a specific version | 851 # Conflicts if between a generic os condition and a specific version |
| 848 # self.Fail(page_name, | 852 # self.Fail(page_name, |
| 849 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 853 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 850 # self.Fail(page_name, | 854 # self.Fail(page_name, |
| 851 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 855 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |