| Index: content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
|
| diff --git a/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py b/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
|
| index 495634787a392b96f217c2d54e88422bd4cf338b..77a6e944e8465f87318d69e5ea44f44bf58440ba 100644
|
| --- a/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
|
| +++ b/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
|
| @@ -6,9 +6,8 @@
|
| # See the GpuTestExpectations class for documentation.
|
|
|
| class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
|
| - def __init__(self, conformance_path, url_prefixes=None):
|
| - super(WebGL2ConformanceExpectations, self).__init__(
|
| - conformance_path, url_prefixes=url_prefixes)
|
| + def __init__(self, conformance_path):
|
| + super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
|
|
|
| def SetExpectations(self):
|
| # ===================================
|
| @@ -17,20 +16,13 @@
|
| # It's expected that not all extensions will be available on all platforms.
|
| # Having a test listed here is not necessarily a problem.
|
|
|
| - # Skip these, rather than expect them to fail, to speed up test
|
| - # execution. The browser is restarted even after expected test
|
| - # failures.
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_astc',
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_astc',
|
| ['win', 'mac', 'linux'])
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_atc',
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_atc',
|
| ['win', 'mac', 'linux'])
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_es3_0',
|
| - ['linux', 'mac'])
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_etc1',
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_etc1',
|
| ['mac', 'linux'])
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_pvrtc',
|
| - ['win', 'mac', 'linux'])
|
| - self.Skip('WebglExtension_WEBGL_compressed_texture_s3tc_srgb',
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc',
|
| ['win', 'mac', 'linux'])
|
|
|
| # ========================
|
|
|