| 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 ['mac', 'amd'], bug=644360) | 412 ['mac', 'amd'], bug=644360) |
| 413 | 413 |
| 414 self.Fail('conformance2/rendering/clipping-wide-points.html', | 414 self.Fail('conformance2/rendering/clipping-wide-points.html', |
| 415 ['mac', 'amd'], bug=642822) | 415 ['mac', 'amd'], bug=642822) |
| 416 self.Fail('conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html', | 416 self.Fail('conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html', |
| 417 ['mac', 'amd'], bug=646182) | 417 ['mac', 'amd'], bug=646182) |
| 418 self.Fail('conformance2/rendering/instanced-rendering-bug.html', | 418 self.Fail('conformance2/rendering/instanced-rendering-bug.html', |
| 419 ['mac', 'amd'], bug=645298) | 419 ['mac', 'amd'], bug=645298) |
| 420 | 420 |
| 421 # Mac Pro with AMD GPU | 421 # Mac Pro with AMD GPU |
| 422 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | |
| 423 ['mac', ('amd', 0x679e)], bug=483282) | |
| 424 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', | 422 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
| 425 ['mac', ('amd', 0x679e)], bug=636648) | 423 ['mac', ('amd', 0x679e)], bug=636648) |
| 426 self.Flaky('deqp/functional/gles3/shaderindexing/tmp.html', | 424 self.Flaky('deqp/functional/gles3/shaderindexing/tmp.html', |
| 427 ['mac', ('amd', 0x679e)], bug=659871) | 425 ['mac', ('amd', 0x679e)], bug=659871) |
| 428 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | |
| 429 'texturesize.html', | |
| 430 ['mac', ('amd', 0x679e)], bug=640506) | |
| 431 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 426 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 432 ['mac', ('amd', 0x679e)], bug=618464) | 427 ['mac', ('amd', 0x679e)], bug=618464) |
| 433 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html', | 428 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html', |
| 434 ['mac', ('amd', 0x679e)], bug=483282) | 429 ['mac', ('amd', 0x679e)], bug=483282) |
| 435 | 430 |
| 436 # Mac Intel | 431 # Mac Intel |
| 437 self.Fail('deqp/functional/gles3/fbomultisample*', | 432 self.Fail('deqp/functional/gles3/fbomultisample*', |
| 438 ['mac', 'intel'], bug=641209) | 433 ['mac', 'intel'], bug=641209) |
| 439 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', | 434 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', |
| 440 ['mac', 'intel'], bug=606074) | 435 ['mac', 'intel'], bug=606074) |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 # self.Fail(page_name, | 861 # self.Fail(page_name, |
| 867 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 862 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 868 # self.Fail(page_name, | 863 # self.Fail(page_name, |
| 869 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 864 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 870 | 865 |
| 871 # Conflicts if between a generic os condition and a specific version | 866 # Conflicts if between a generic os condition and a specific version |
| 872 # self.Fail(page_name, | 867 # self.Fail(page_name, |
| 873 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 868 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 874 # self.Fail(page_name, | 869 # self.Fail(page_name, |
| 875 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 870 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |