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

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

Issue 2632603002: Add support for ASAN-specific test expectations to WebGL tests. (Closed)
Patch Set: Created 3 years, 11 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
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 add365ec358f301b59dc4d2d5eef2b942c69fb22..10f5633d583270a8cfed3751fad0848101a3fa6b 100644
--- a/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
+++ b/content/test/gpu/gpu_tests/webgl2_conformance_expectations.py
@@ -6,9 +6,9 @@ from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
# See the GpuTestExpectations class for documentation.
class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
- def __init__(self, conformance_path, url_prefixes=None):
+ def __init__(self, conformance_path, url_prefixes=None, is_asan=False):
super(WebGL2ConformanceExpectations, self).__init__(
- conformance_path, url_prefixes=url_prefixes)
+ conformance_path, url_prefixes=url_prefixes, is_asan=is_asan)
def SetExpectations(self):
# ===================================
@@ -491,6 +491,20 @@ class WebGL2ConformanceExpectations(WebGLConformanceExpectations):
# Mac Intel
+ # ASAN only
+ self.Fail(
+ 'conformance/more/functions/copyTexImage2D.html',
+ ['mac', 'intel', 'asan'], bug=680845)
+ self.Fail(
+ 'conformance/more/functions/copyTexSubImage2D.html',
+ ['mac', 'intel', 'asan'], bug=680845)
+ self.Fail(
+ 'deqp/functional/gles3/negativetextureapi.html',
+ ['mac', 'intel', 'asan'], bug=680845)
+ self.Fail(
+ 'deqp/functional/gles3/texturespecification/basic_copyteximage2d.html',
+ ['mac', 'intel', 'asan'], bug=680845)
+
self.Fail(
'conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html',
['sierra', 'intel'], bug=663188)
« no previous file with comments | « content/test/gpu/gpu_tests/test_expectations_unittest.py ('k') | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698