| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 self.Fail('WebglExtension_EXT_color_buffer_float', | 44 self.Fail('WebglExtension_EXT_color_buffer_float', |
| 45 ['win', 'mac']) | 45 ['win', 'mac']) |
| 46 # Skip these, rather than expect them to fail, to speed up test | 46 # Skip these, rather than expect them to fail, to speed up test |
| 47 # execution. The browser is restarted even after expected test | 47 # execution. The browser is restarted even after expected test |
| 48 # failures. | 48 # failures. |
| 49 self.Skip('WebglExtension_WEBGL_compressed_texture_astc', | 49 self.Skip('WebglExtension_WEBGL_compressed_texture_astc', |
| 50 ['win', 'mac', 'linux']) | 50 ['win', 'mac', 'linux']) |
| 51 self.Skip('WebglExtension_WEBGL_compressed_texture_atc', | 51 self.Skip('WebglExtension_WEBGL_compressed_texture_atc', |
| 52 ['win', 'mac', 'linux']) | 52 ['win', 'mac', 'linux']) |
| 53 self.Skip('WebglExtension_WEBGL_compressed_texture_etc1', | 53 self.Skip('WebglExtension_WEBGL_compressed_texture_etc1', |
| 54 ['mac', 'linux']) | 54 ['win', 'mac', 'linux']) |
| 55 self.Skip('WebglExtension_WEBGL_compressed_texture_pvrtc', | 55 self.Skip('WebglExtension_WEBGL_compressed_texture_pvrtc', |
| 56 ['win', 'mac', 'linux']) | 56 ['win', 'mac', 'linux']) |
| 57 self.Skip('WebglExtension_WEBGL_compressed_texture_s3tc_srgb', | 57 self.Skip('WebglExtension_WEBGL_compressed_texture_s3tc_srgb', |
| 58 ['win', 'mac', 'linux', 'android']) | 58 ['win', 'mac', 'linux', 'android']) |
| 59 | 59 |
| 60 # Extensions not available under D3D9 | 60 # Extensions not available under D3D9 |
| 61 self.Fail('WebglExtension_EXT_disjoint_timer_query', | 61 self.Fail('WebglExtension_EXT_disjoint_timer_query', |
| 62 ['win', 'd3d9']) | 62 ['win', 'd3d9']) |
| 63 self.Fail('WebglExtension_EXT_sRGB', | 63 self.Fail('WebglExtension_EXT_sRGB', |
| 64 ['win', 'd3d9']) | 64 ['win', 'd3d9']) |
| 65 self.Fail('WebglExtension_WEBGL_compressed_texture_etc1', | |
| 66 ['win', 'd3d9']) | |
| 67 | 65 |
| 68 self.Fail('WebglExtension_WEBGL_depth_texture', | 66 self.Fail('WebglExtension_WEBGL_depth_texture', |
| 69 ['win', 'amd', 'd3d9']) | 67 ['win', 'amd', 'd3d9']) |
| 70 | 68 |
| 71 self.Fail('WebglExtension_WEBGL_draw_buffers', | 69 self.Fail('WebglExtension_WEBGL_draw_buffers', |
| 72 ['win', 'd3d9']) | 70 ['win', 'd3d9']) |
| 73 | 71 |
| 74 # Android general | 72 # Android general |
| 75 self.Fail('WebglExtension_EXT_disjoint_timer_query', | 73 self.Fail('WebglExtension_EXT_disjoint_timer_query', |
| 76 ['android']) | 74 ['android']) |
| (...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 self.Fail('conformance/textures/misc/texture-npot.html', | 842 self.Fail('conformance/textures/misc/texture-npot.html', |
| 845 ['chromeos', ('intel', 0xa011)], bug=375554) | 843 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 846 self.Fail('conformance/textures/misc/texture-npot-video.html', | 844 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 847 ['chromeos', ('intel', 0xa011)], bug=375554) | 845 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 848 self.Fail('conformance/textures/misc/texture-size.html', | 846 self.Fail('conformance/textures/misc/texture-size.html', |
| 849 ['chromeos', ('intel', 0xa011)], bug=375554) | 847 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 850 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 848 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 851 ['chromeos', ('intel', 0xa011)], bug=375554) | 849 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 852 self.Skip('conformance/uniforms/uniform-default-values.html', | 850 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 853 ['chromeos', ('intel', 0xa011)], bug=375554) | 851 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |