| 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): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 ['linux', 'nvidia', 'opengl'], bug=483282) | 603 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 604 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 604 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 605 ['linux', 'nvidia', 'opengl'], bug=483282) | 605 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 606 | 606 |
| 607 # Linux Intel | 607 # Linux Intel |
| 608 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 608 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
| 609 ['linux', 'intel'], bug=598902) | 609 ['linux', 'intel'], bug=598902) |
| 610 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', | 610 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', |
| 611 ['linux', 'intel'], bug=618408) | 611 ['linux', 'intel'], bug=618408) |
| 612 | 612 |
| 613 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 614 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 615 ['linux', 'intel'], bug=540543) # GPU timeout |
| 616 |
| 613 # The Mesa Intel driver has a scoping bug, see | 617 # The Mesa Intel driver has a scoping bug, see |
| 614 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 | 618 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
| 615 # It has been fixed in Mesa 12.0 | 619 # It has been fixed in Mesa 12.0 |
| 616 self.Fail('deqp/data/gles3/shaders/scoping.html', | 620 self.Fail('deqp/data/gles3/shaders/scoping.html', |
| 617 ['linux', 'intel'], bug=610800) | 621 ['linux', 'intel'], bug=610800) |
| 618 | 622 |
| 619 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', | 623 self.Fail('deqp/functional/gles3/framebufferblit/conversion_04.html', |
| 620 ['linux', 'intel'], bug=598902) | 624 ['linux', 'intel'], bug=598902) |
| 621 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', | 625 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', |
| 622 ['linux', 'intel'], bug=598902) | 626 ['linux', 'intel'], bug=598902) |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 # self.Fail(page_name, | 946 # self.Fail(page_name, |
| 943 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 947 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 944 # self.Fail(page_name, | 948 # self.Fail(page_name, |
| 945 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 949 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 946 | 950 |
| 947 # Conflicts if between a generic os condition and a specific version | 951 # Conflicts if between a generic os condition and a specific version |
| 948 # self.Fail(page_name, | 952 # self.Fail(page_name, |
| 949 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 953 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 950 # self.Fail(page_name, | 954 # self.Fail(page_name, |
| 951 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 955 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |