| 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)
|
|
|