| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 '2d_array_combinations_01.html', | 392 '2d_array_combinations_01.html', |
| 393 ['mac', 'intel'], bug=606074) | 393 ['mac', 'intel'], bug=606074) |
| 394 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html', | 394 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html', |
| 395 ['mac', 'intel'], bug=606074) | 395 ['mac', 'intel'], bug=606074) |
| 396 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html', | 396 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html', |
| 397 ['mac', 'intel'], bug=606074) | 397 ['mac', 'intel'], bug=606074) |
| 398 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html', | 398 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html', |
| 399 ['mac', 'intel'], bug=606074) | 399 ['mac', 'intel'], bug=606074) |
| 400 | 400 |
| 401 self.Fail('deqp/functional/gles3/texturespecification/' + | 401 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 402 'basic_copyteximage2d.html', | |
| 403 ['mac', 'intel'], bug=620067) | |
| 404 self.Fail('deqp/functional/gles3/texturespecification/' + | |
| 405 'random_teximage2d_2d.html', | 402 'random_teximage2d_2d.html', |
| 406 ['mac', 'intel'], bug=483282) | 403 ['mac', 'intel'], bug=483282) |
| 407 self.Fail('deqp/functional/gles3/texturespecification/' + | 404 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 408 'teximage3d_pbo_params.html', | 405 'teximage3d_pbo_params.html', |
| 409 ['mac', 'intel'], bug=483282) | 406 ['mac', 'intel'], bug=483282) |
| 410 self.Fail('deqp/functional/gles3/texturespecification/' + | 407 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 411 'texsubimage3d_pbo_params.html', | 408 'texsubimage3d_pbo_params.html', |
| 412 ['mac', 'intel'], bug=483282) | 409 ['mac', 'intel'], bug=483282) |
| 413 | 410 |
| 414 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 411 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 # self.Fail(page_name, | 814 # self.Fail(page_name, |
| 818 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 815 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 819 # self.Fail(page_name, | 816 # self.Fail(page_name, |
| 820 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 817 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 821 | 818 |
| 822 # Conflicts if between a generic os condition and a specific version | 819 # Conflicts if between a generic os condition and a specific version |
| 823 # self.Fail(page_name, | 820 # self.Fail(page_name, |
| 824 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 821 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 825 # self.Fail(page_name, | 822 # self.Fail(page_name, |
| 826 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 823 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |