Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Unified Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 1903963003: Revert of Added tests to check that WebGL extensions are available. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/gpu/gpu_tests/webgl_conformance.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d91898e72dcfa46a85305dbee78ef2f1ca5c5869..3bcb67499f401e26c8aab7ada3c218b4ff237018 100644
--- a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py
+++ b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py
@@ -22,47 +22,13 @@
def CheckPatternIsValid(self, pattern):
# Look for basic wildcards.
- if not '*' in pattern and not 'WebglExtension.' in pattern:
+ if not '*' 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)
« no previous file with comments | « content/test/gpu/gpu_tests/webgl_conformance.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698