| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ['win', 'intel'], bug=614418) | 338 ['win', 'intel'], bug=614418) |
| 339 | 339 |
| 340 # Mac only. | 340 # Mac only. |
| 341 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', | 341 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', |
| 342 ['mac'], bug=606074) | 342 ['mac'], bug=606074) |
| 343 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', | 343 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', |
| 344 ['mac'], bug=606074) | 344 ['mac'], bug=606074) |
| 345 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', | 345 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', |
| 346 ['mac'], bug=606074) | 346 ['mac'], bug=606074) |
| 347 | 347 |
| 348 self.Skip('deqp/functional/gles3/texturespecification/' + | |
| 349 'basic_copyteximage2d.html', | |
| 350 ['mac'], bug=577144) | |
| 351 self.Skip('deqp/functional/gles3/texturespecification/' + | |
| 352 'basic_copytexsubimage2d.html', | |
| 353 ['mac'], bug=577144) | |
| 354 self.Fail('deqp/functional/gles3/textureformat/unsized_2d_array.html', | 348 self.Fail('deqp/functional/gles3/textureformat/unsized_2d_array.html', |
| 355 ['mac'], bug=577144) | 349 ['mac'], bug=577144) |
| 356 self.Fail('deqp/functional/gles3/textureformat/unsized_3d.html', | 350 self.Fail('deqp/functional/gles3/textureformat/unsized_3d.html', |
| 357 ['mac'], bug=577144) | 351 ['mac'], bug=577144) |
| 358 self.Fail('deqp/functional/gles3/textureformat/compressed_2d.html', | 352 self.Fail('deqp/functional/gles3/textureformat/compressed_2d.html', |
| 359 ['mac'], bug=612205) | 353 ['mac'], bug=612205) |
| 360 self.Fail('deqp/functional/gles3/textureformat/compressed_cube.html', | 354 self.Fail('deqp/functional/gles3/textureformat/compressed_cube.html', |
| 361 ['mac'], bug=612205) | 355 ['mac'], bug=612205) |
| 362 self.Fail('deqp/functional/gles3/texturewrap/e*', | 356 self.Fail('deqp/functional/gles3/texturewrap/e*', |
| 363 ['mac'], bug=612205) | 357 ['mac'], bug=612205) |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 # self.Fail(page_name, | 679 # self.Fail(page_name, |
| 686 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 680 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 687 # self.Fail(page_name, | 681 # self.Fail(page_name, |
| 688 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 682 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 689 | 683 |
| 690 # Conflicts if between a generic os condition and a specific version | 684 # Conflicts if between a generic os condition and a specific version |
| 691 # self.Fail(page_name, | 685 # self.Fail(page_name, |
| 692 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 686 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 693 # self.Fail(page_name, | 687 # self.Fail(page_name, |
| 694 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 688 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |