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

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

Issue 1887713006: Added tests to check that WebGL extensions are available. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sigh... Trying to fix the expectations again. 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/data/gpu/webgl_extension_test.html ('k') | content/test/gpu/gpu_tests/webgl_conformance.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7ee1229411ff293c4b883946930b483ed75594dc..57cb4f71f8c5cda3f3eeb78734bf71a493902483 100644
--- a/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
+++ b/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
@@ -10,6 +10,26 @@ class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
super(WebGL2ConformanceExpectations, self).__init__(conformance_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', 'linux'])
+ 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'])
+
+ # ========================
+ # Conformance expectations
+ # ========================
# All platforms.
self.Skip('deqp/functional/gles3/builtinprecision*.html', bug=483282)
self.Skip('deqp/functional/gles3/draw.html', bug=483282)
« no previous file with comments | « content/test/data/gpu/webgl_extension_test.html ('k') | content/test/gpu/gpu_tests/webgl_conformance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698