| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'angle_and_trigonometry_02.html', | 390 'angle_and_trigonometry_02.html', |
| 391 ['mac', 'amd'], bug=483282) | 391 ['mac', 'amd'], bug=483282) |
| 392 self.Fail('deqp/functional/gles3/shaderoperator/' + | 392 self.Fail('deqp/functional/gles3/shaderoperator/' + |
| 393 'angle_and_trigonometry_03.html', | 393 'angle_and_trigonometry_03.html', |
| 394 ['mac', 'amd'], bug=483282) | 394 ['mac', 'amd'], bug=483282) |
| 395 self.Fail('deqp/functional/gles3/shaderoperator/common_fucntions.html', | 395 self.Fail('deqp/functional/gles3/shaderoperator/common_fucntions.html', |
| 396 ['mac', 'amd'], bug=483282) | 396 ['mac', 'amd'], bug=483282) |
| 397 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', | 397 self.Fail('deqp/functional/gles3/shaderoperator/geometric.html', |
| 398 ['mac', 'amd'], bug=483282) | 398 ['mac', 'amd'], bug=483282) |
| 399 | 399 |
| 400 # Mac Pro with AMD GPU |
| 401 self.Flaky('deqp/functional/gles3/shaderindexing/mat_01.html', |
| 402 ['mac', ('amd', 0x679e)], bug=636648) |
| 403 |
| 400 # Mac Intel | 404 # Mac Intel |
| 401 self.Fail('deqp/functional/gles3/shadercommonfunction.html', | 405 self.Fail('deqp/functional/gles3/shadercommonfunction.html', |
| 402 ['mac', 'intel'], bug=483282) | 406 ['mac', 'intel'], bug=483282) |
| 403 self.Fail('deqp/functional/gles3/transformfeedback/*.html', | 407 self.Fail('deqp/functional/gles3/transformfeedback/*.html', |
| 404 ['mac', 'intel'], bug=483282) | 408 ['mac', 'intel'], bug=483282) |
| 405 | 409 |
| 406 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', | 410 self.Fail('deqp/functional/gles3/texturefiltering/2d_combinations_01.html', |
| 407 ['mac', 'intel'], bug=606074) | 411 ['mac', 'intel'], bug=606074) |
| 408 self.Fail('deqp/functional/gles3/texturefiltering/' + | 412 self.Fail('deqp/functional/gles3/texturefiltering/' + |
| 409 'cube_combinations_01.html', | 413 'cube_combinations_01.html', |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 # self.Fail(page_name, | 869 # self.Fail(page_name, |
| 866 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 870 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 867 # self.Fail(page_name, | 871 # self.Fail(page_name, |
| 868 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 869 | 873 |
| 870 # Conflicts if between a generic os condition and a specific version | 874 # Conflicts if between a generic os condition and a specific version |
| 871 # self.Fail(page_name, | 875 # self.Fail(page_name, |
| 872 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 876 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 873 # self.Fail(page_name, | 877 # self.Fail(page_name, |
| 874 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 878 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |