| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 self.Fail('deqp/functional/gles3/shaderoperator/' + | 379 self.Fail('deqp/functional/gles3/shaderoperator/' + |
| 380 'angle_and_trigonometry_03.html', | 380 'angle_and_trigonometry_03.html', |
| 381 ['mac', 'amd'], bug=483282) | 381 ['mac', 'amd'], bug=483282) |
| 382 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', | 382 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', |
| 383 ['mac', 'amd'], bug=483282) | 383 ['mac', 'amd'], bug=483282) |
| 384 | 384 |
| 385 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', | 385 self.Flaky('deqp/functional/gles3/shaderindexing/mat_02.html', |
| 386 ['mac', 'amd'], bug=644360) | 386 ['mac', 'amd'], bug=644360) |
| 387 | 387 |
| 388 # Mac Pro with AMD GPU | 388 # Mac Pro with AMD GPU |
| 389 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', | |
| 390 ['mac', ('amd', 0x679e)], bug=483282) | |
| 391 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', | 389 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
| 392 ['mac', ('amd', 0x679e)], bug=636648) | 390 ['mac', ('amd', 0x679e)], bug=636648) |
| 393 self.Flaky('deqp/functional/gles3/shaderindexing/tmp.html', | 391 self.Flaky('deqp/functional/gles3/shaderindexing/tmp.html', |
| 394 ['mac', ('amd', 0x679e)], bug=659871) | 392 ['mac', ('amd', 0x679e)], bug=659871) |
| 395 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | |
| 396 'texturesize.html', | |
| 397 ['mac', ('amd', 0x679e)], bug=640506) | |
| 398 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 393 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 399 ['mac', ('amd', 0x679e)], bug=618464) | 394 ['mac', ('amd', 0x679e)], bug=618464) |
| 400 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html', | 395 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html', |
| 401 ['mac', ('amd', 0x679e)], bug=483282) | 396 ['mac', ('amd', 0x679e)], bug=483282) |
| 402 | 397 |
| 403 # Mac Intel | 398 # Mac Intel |
| 404 self.Fail('deqp/functional/gles3/fbomultisample*', | 399 self.Fail('deqp/functional/gles3/fbomultisample*', |
| 405 ['mac', 'intel'], bug=641209) | 400 ['mac', 'intel'], bug=641209) |
| 406 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', | 401 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', |
| 407 ['mac', 'intel'], bug=606074) | 402 ['mac', 'intel'], bug=606074) |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 # self.Fail(page_name, | 807 # self.Fail(page_name, |
| 813 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 808 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 814 # self.Fail(page_name, | 809 # self.Fail(page_name, |
| 815 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 810 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 816 | 811 |
| 817 # Conflicts if between a generic os condition and a specific version | 812 # Conflicts if between a generic os condition and a specific version |
| 818 # self.Fail(page_name, | 813 # self.Fail(page_name, |
| 819 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 814 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 820 # self.Fail(page_name, | 815 # self.Fail(page_name, |
| 821 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 816 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |