| Index: content/test/gpu/gpu_tests/webgl_conformance_expectations.py
|
| diff --git a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py
|
| index 3bcb67499f401e26c8aab7ada3c218b4ff237018..d91898e72dcfa46a85305dbee78ef2f1ca5c5869 100644
|
| --- a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py
|
| +++ b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py
|
| @@ -22,13 +22,47 @@ class WebGLConformanceExpectations(GpuTestExpectations):
|
|
|
| def CheckPatternIsValid(self, pattern):
|
| # Look for basic wildcards.
|
| - if not '*' in pattern:
|
| + if not '*' in pattern and not 'WebglExtension.' in pattern:
|
| full_path = os.path.normpath(os.path.join(self.conformance_path, pattern))
|
| if not os.path.exists(full_path):
|
| raise Exception('The WebGL conformance test path specified in ' +
|
| 'expectation does not exist: ' + full_path)
|
|
|
| def SetExpectations(self):
|
| + # ===================================
|
| + # Extension availability expectations
|
| + # ===================================
|
| + # It's expected that not all extensions will be available on all platforms.
|
| + # Having a test listed here is not necessarily a problem.
|
| +
|
| + self.Fail('WebglExtension.EXT_color_buffer_float',
|
| + ['win', 'mac'])
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_astc',
|
| + ['win', 'mac', 'linux'])
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_atc',
|
| + ['win', 'mac', 'linux'])
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_etc1',
|
| + ['mac', 'linux'])
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc',
|
| + ['win', 'mac', 'linux'])
|
| +
|
| + # Extensions not available under D3D9
|
| + self.Fail('WebglExtension.EXT_disjoint_timer_query',
|
| + ['win', 'd3d9'])
|
| + self.Fail('WebglExtension.EXT_sRGB',
|
| + ['win', 'd3d9'])
|
| + self.Fail('WebglExtension.WEBGL_compressed_texture_etc1',
|
| + ['win', 'd3d9'])
|
| +
|
| + self.Fail('WebglExtension.WEBGL_depth_texture',
|
| + ['win', 'amd', 'd3d9'])
|
| +
|
| + self.Fail('WebglExtension.WEBGL_draw_buffers',
|
| + ['win', 'd3d9'])
|
| +
|
| + # ========================
|
| + # Conformance expectations
|
| + # ========================
|
| # Fails on all platforms
|
| self.Fail('deqp/data/gles2/shaders/functions.html',
|
| bug=478572)
|
|
|