| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 ['mac', 'amd'], bug=618464) | 443 ['mac', 'amd'], bug=618464) |
| 444 | 444 |
| 445 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', | 445 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', |
| 446 ['mac', 'amd'], bug=644360) | 446 ['mac', 'amd'], bug=644360) |
| 447 | 447 |
| 448 # Mac Pro with AMD GPU | 448 # Mac Pro with AMD GPU |
| 449 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | 449 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 450 ['mac', ('amd', 0x679e)], bug=483282) | 450 ['mac', ('amd', 0x679e)], bug=483282) |
| 451 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', | 451 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
| 452 ['mac', ('amd', 0x679e)], bug=636648) | 452 ['mac', ('amd', 0x679e)], bug=636648) |
| 453 self.Flaky('deqp/functional/gles3/shaderindexing/tmp.html', |
| 454 ['mac', ('amd', 0x679e)], bug=659871) |
| 453 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 455 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 454 'texturesize.html', | 456 'texturesize.html', |
| 455 ['mac', ('amd', 0x679e)], bug=640506) | 457 ['mac', ('amd', 0x679e)], bug=640506) |
| 456 | 458 |
| 457 # Mac Intel | 459 # Mac Intel |
| 458 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', | 460 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', |
| 459 ['mac', 'intel'], bug=606074) | 461 ['mac', 'intel'], bug=606074) |
| 460 self.Fail('deqp/functional/gles3/texturefiltering/' + | 462 self.Fail('deqp/functional/gles3/texturefiltering/' + |
| 461 'cube_combinations_01.html', | 463 'cube_combinations_01.html', |
| 462 ['mac', 'intel'], bug=606074) | 464 ['mac', 'intel'], bug=606074) |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 # self.Fail(page_name, | 870 # self.Fail(page_name, |
| 869 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 871 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 870 # self.Fail(page_name, | 872 # self.Fail(page_name, |
| 871 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 873 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 872 | 874 |
| 873 # Conflicts if between a generic os condition and a specific version | 875 # Conflicts if between a generic os condition and a specific version |
| 874 # self.Fail(page_name, | 876 # self.Fail(page_name, |
| 875 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 877 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 876 # self.Fail(page_name, | 878 # self.Fail(page_name, |
| 877 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 879 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |