| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 ['win', 'intel'], bug=483282) | 319 ['win', 'intel'], bug=483282) |
| 320 self.Fail('deqp/functional/gles3/texturespecification/' + | 320 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 321 'teximage3d_depth.html', | 321 'teximage3d_depth.html', |
| 322 ['win', 'intel'], bug=614418) | 322 ['win', 'intel'], bug=614418) |
| 323 self.Fail('deqp/functional/gles3/texturespecification/' + | 323 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 324 'texsubimage3d_depth.html', | 324 'texsubimage3d_depth.html', |
| 325 ['win', 'intel'], bug=614418) | 325 ['win', 'intel'], bug=614418) |
| 326 self.Fail('deqp/functional/gles3/texturespecification/' + | 326 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 327 'texstorage3d_format_depth_stencil.html', | 327 'texstorage3d_format_depth_stencil.html', |
| 328 ['win', 'intel'], bug=614418) | 328 ['win', 'intel'], bug=614418) |
| 329 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html', |
| 330 ['win', 'intel'], bug=614418) |
| 331 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html', |
| 332 ['win', 'intel'], bug=614418) |
| 333 self.Fail('deqp/functional/gles3/textureformat/sized_color_3d_pot_03.html', |
| 334 ['win', 'intel'], bug=614418) |
| 335 self.Fail('deqp/functional/gles3/textureformat/sized_depth_stencil.html', |
| 336 ['win', 'intel'], bug=614418) |
| 337 self.Fail('deqp/functional/gles3/textureformat/compressed_cube.html', |
| 338 ['win', 'intel'], bug=614418) |
| 329 | 339 |
| 330 # Mac only. | 340 # Mac only. |
| 331 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', | 341 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', |
| 332 ['mac'], bug=606074) | 342 ['mac'], bug=606074) |
| 333 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', | 343 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', |
| 334 ['mac'], bug=606074) | 344 ['mac'], bug=606074) |
| 335 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', | 345 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', |
| 336 ['mac'], bug=606074) | 346 ['mac'], bug=606074) |
| 337 | 347 |
| 338 self.Skip('deqp/functional/gles3/texturespecification/' + | 348 self.Skip('deqp/functional/gles3/texturespecification/' + |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 # self.Fail(page_name, | 685 # self.Fail(page_name, |
| 676 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 686 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 677 # self.Fail(page_name, | 687 # self.Fail(page_name, |
| 678 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 688 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 679 | 689 |
| 680 # Conflicts if between a generic os condition and a specific version | 690 # Conflicts if between a generic os condition and a specific version |
| 681 # self.Fail(page_name, | 691 # self.Fail(page_name, |
| 682 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 692 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 683 # self.Fail(page_name, | 693 # self.Fail(page_name, |
| 684 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 694 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |