| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 492 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 493 ['linux', 'intel'], bug=640389) | 493 ['linux', 'intel'], bug=640389) |
| 494 | 494 |
| 495 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 495 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 496 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 496 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 497 ['linux', 'intel'], bug=540543) # GPU timeout | 497 ['linux', 'intel'], bug=540543) # GPU timeout |
| 498 | 498 |
| 499 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', | 499 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 500 ['linux', 'intel'], bug=635528) | 500 ['linux', 'intel'], bug=635528) |
| 501 | 501 |
| 502 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. |
| 503 self.Fail('conformance2/misc/views-with-offsets.html', |
| 504 ['linux', 'intel'], bug=664180) |
| 505 |
| 502 # Linux Intel with ANGLE only | 506 # Linux Intel with ANGLE only |
| 503 self.Fail('deqp/functional/gles3/framebufferblit/' + | 507 self.Fail('deqp/functional/gles3/framebufferblit/' + |
| 504 'default_framebuffer_00.html', | 508 'default_framebuffer_00.html', |
| 505 ['linux', 'intel', 'opengl'], bug=658832) | 509 ['linux', 'intel', 'opengl'], bug=658832) |
| 506 | 510 |
| 507 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', | 511 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', |
| 508 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id | 512 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id |
| 509 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', | 513 self.Fail('conformance2/rendering/blitframebuffer-filter-srgb.html', |
| 510 ['linux', 'intel', 'opengl'], bug=634525) | 514 ['linux', 'intel', 'opengl'], bug=634525) |
| 511 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 515 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 # self.Fail(page_name, | 835 # self.Fail(page_name, |
| 832 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 836 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 833 # self.Fail(page_name, | 837 # self.Fail(page_name, |
| 834 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 838 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 835 | 839 |
| 836 # Conflicts if between a generic os condition and a specific version | 840 # Conflicts if between a generic os condition and a specific version |
| 837 # self.Fail(page_name, | 841 # self.Fail(page_name, |
| 838 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 842 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 839 # self.Fail(page_name, | 843 # self.Fail(page_name, |
| 840 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 844 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |