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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 self.Fail('deqp/functional/gles3/shaderoperator/' + | 435 self.Fail('deqp/functional/gles3/shaderoperator/' + |
436 'angle_and_trigonometry_03.html', | 436 'angle_and_trigonometry_03.html', |
437 ['mac', 'amd'], bug=483282) | 437 ['mac', 'amd'], bug=483282) |
438 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', | 438 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', |
439 ['mac', 'amd'], bug=483282) | 439 ['mac', 'amd'], bug=483282) |
440 | 440 |
441 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', | 441 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', |
442 ['mac', 'amd'], bug=644360) | 442 ['mac', 'amd'], bug=644360) |
443 | 443 |
444 # Mac Pro with AMD GPU | 444 # Mac Pro with AMD GPU |
| 445 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', |
| 446 ['mac', ('amd', 0x679e)], bug=483282) |
445 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', | 447 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
446 ['mac', ('amd', 0x679e)], bug=636648) | 448 ['mac', ('amd', 0x679e)], bug=636648) |
447 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 449 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
448 'texturesize.html', | 450 'texturesize.html', |
449 ['mac', ('amd', 0x679e)], bug=640506) | 451 ['mac', ('amd', 0x679e)], bug=640506) |
450 | 452 |
451 # Mac Intel | 453 # Mac Intel |
452 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', | 454 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', |
453 ['mac', 'intel'], bug=606074) | 455 ['mac', 'intel'], bug=606074) |
454 self.Fail('deqp/functional/gles3/texturefiltering/' + | 456 self.Fail('deqp/functional/gles3/texturefiltering/' + |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 # self.Fail(page_name, | 888 # self.Fail(page_name, |
887 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
888 # self.Fail(page_name, | 890 # self.Fail(page_name, |
889 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 891 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
890 | 892 |
891 # Conflicts if between a generic os condition and a specific version | 893 # Conflicts if between a generic os condition and a specific version |
892 # self.Fail(page_name, | 894 # self.Fail(page_name, |
893 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
894 # self.Fail(page_name, | 896 # self.Fail(page_name, |
895 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 897 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |