| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 501 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 502 ['linux', 'intel'], bug=640389) | 502 ['linux', 'intel'], bug=640389) |
| 503 | 503 |
| 504 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 | 504 # See https://bugs.freedesktop.org/show_bug.cgi?id=94477 |
| 505 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', | 505 self.Skip('conformance/glsl/bugs/temp-expressions-should-not-crash.html', |
| 506 ['linux', 'intel'], bug=540543) # GPU timeout | 506 ['linux', 'intel'], bug=540543) # GPU timeout |
| 507 | 507 |
| 508 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', | 508 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 509 ['linux', 'intel'], bug=635528) | 509 ['linux', 'intel'], bug=635528) |
| 510 | 510 |
| 511 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 512 ['linux', 'intel'], bug=666384) |
| 513 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html', |
| 514 ['linux', 'intel'], bug=666384) |
| 515 |
| 511 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. | 516 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. |
| 512 self.Fail('conformance2/misc/views-with-offsets.html', | 517 self.Fail('conformance2/misc/views-with-offsets.html', |
| 513 ['linux', 'intel', 'no_angle'], bug=664180) | 518 ['linux', 'intel', 'no_angle'], bug=664180) |
| 514 | 519 |
| 515 # Linux Intel with ANGLE only | 520 # Linux Intel with ANGLE only |
| 516 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', | 521 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', |
| 517 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id | 522 ['linux', 'intel', 'opengl'], bug=1492) # ANGLE bug id |
| 518 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', | 523 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', |
| 519 ['linux', 'intel', 'opengl'], bug=598902) | 524 ['linux', 'intel', 'opengl'], bug=598902) |
| 520 | 525 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 # self.Fail(page_name, | 788 # self.Fail(page_name, |
| 784 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 789 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 785 # self.Fail(page_name, | 790 # self.Fail(page_name, |
| 786 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 791 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 787 | 792 |
| 788 # Conflicts if between a generic os condition and a specific version | 793 # Conflicts if between a generic os condition and a specific version |
| 789 # self.Fail(page_name, | 794 # self.Fail(page_name, |
| 790 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 795 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 791 # self.Fail(page_name, | 796 # self.Fail(page_name, |
| 792 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 797 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |