| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 '2d_array_combinations_01.html', | 460 '2d_array_combinations_01.html', |
| 461 ['mac', 'intel'], bug=606074) | 461 ['mac', 'intel'], bug=606074) |
| 462 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html', | 462 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html', |
| 463 ['mac', 'intel'], bug=606074) | 463 ['mac', 'intel'], bug=606074) |
| 464 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html', | 464 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html', |
| 465 ['mac', 'intel'], bug=606074) | 465 ['mac', 'intel'], bug=606074) |
| 466 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html', | 466 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html', |
| 467 ['mac', 'intel'], bug=606074) | 467 ['mac', 'intel'], bug=606074) |
| 468 | 468 |
| 469 self.Fail('deqp/functional/gles3/texturespecification/' + | 469 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 470 'basic_copyteximage2d.html', | |
| 471 ['mac', 'intel'], bug=620067) | |
| 472 self.Fail('deqp/functional/gles3/texturespecification/' + | |
| 473 'random_teximage2d_2d.html', | 470 'random_teximage2d_2d.html', |
| 474 ['mac', 'intel'], bug=483282) | 471 ['mac', 'intel'], bug=483282) |
| 475 self.Fail('deqp/functional/gles3/texturespecification/' + | 472 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 476 'teximage3d_pbo_params.html', | 473 'teximage3d_pbo_params.html', |
| 477 ['mac', 'intel'], bug=483282) | 474 ['mac', 'intel'], bug=483282) |
| 478 self.Fail('deqp/functional/gles3/texturespecification/' + | 475 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 479 'texsubimage3d_pbo_params.html', | 476 'texsubimage3d_pbo_params.html', |
| 480 ['mac', 'intel'], bug=483282) | 477 ['mac', 'intel'], bug=483282) |
| 481 | 478 |
| 482 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 479 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 # self.Fail(page_name, | 885 # self.Fail(page_name, |
| 889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 886 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 890 # self.Fail(page_name, | 887 # self.Fail(page_name, |
| 891 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 888 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 892 | 889 |
| 893 # Conflicts if between a generic os condition and a specific version | 890 # Conflicts if between a generic os condition and a specific version |
| 894 # self.Fail(page_name, | 891 # self.Fail(page_name, |
| 895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 892 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 896 # self.Fail(page_name, | 893 # self.Fail(page_name, |
| 897 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 894 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |