| 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', | 561 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', |
| 562 ['linux', 'nvidia', 'opengl'], bug=483282) | 562 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 563 | 563 |
| 564 # Linux Intel | 564 # Linux Intel |
| 565 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', | 565 self.Fail('deqp/functional/gles3/shaderderivate_dfdx.html', |
| 566 ['linux', 'intel'], bug=618408) | 566 ['linux', 'intel'], bug=618408) |
| 567 self.Fail('deqp/functional/gles3/fbomultisample.2_samples.html', | 567 self.Fail('deqp/functional/gles3/fbomultisample.2_samples.html', |
| 568 ['linux', 'intel'], bug=635528) | 568 ['linux', 'intel'], bug=635528) |
| 569 self.Fail('deqp/functional/gles3/fbomultisample.4_samples.html', | 569 self.Fail('deqp/functional/gles3/fbomultisample.4_samples.html', |
| 570 ['linux', 'intel'], bug=635528) | 570 ['linux', 'intel'], bug=635528) |
| 571 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 572 ['linux', 'intel'], bug=640389) |
| 571 | 573 |
| 572 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 574 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 573 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 575 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 574 ['linux', 'intel'], bug=540543) # GPU timeout | 576 ['linux', 'intel'], bug=540543) # GPU timeout |
| 575 | 577 |
| 576 # The Mesa Intel driver has a scoping bug, see | 578 # The Mesa Intel driver has a scoping bug, see |
| 577 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 | 579 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
| 578 # It has been fixed in Mesa 12.0 | 580 # It has been fixed in Mesa 12.0 |
| 579 self.Fail('deqp/data/gles3/shaders/scoping.html', | 581 self.Fail('deqp/data/gles3/shaders/scoping.html', |
| 580 ['linux', 'intel'], bug=610800) | 582 ['linux', 'intel'], bug=610800) |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 895 # self.Fail(page_name, | 897 # self.Fail(page_name, |
| 896 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 898 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 897 # self.Fail(page_name, | 899 # self.Fail(page_name, |
| 898 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 900 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 899 | 901 |
| 900 # Conflicts if between a generic os condition and a specific version | 902 # Conflicts if between a generic os condition and a specific version |
| 901 # self.Fail(page_name, | 903 # self.Fail(page_name, |
| 902 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 904 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 903 # self.Fail(page_name, | 905 # self.Fail(page_name, |
| 904 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 906 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |