From faaaf8297491287dd10c553ee60abdb045f13ba0 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Mon, 27 Jan 2025 16:17:54 -0800 Subject: [PATCH] Disable pytorch_interoperability_test under asan on all backends. It wasn't sufficient to disable this only on GPU. PiperOrigin-RevId: 720344366 --- tests/BUILD | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/BUILD b/tests/BUILD index 59b93f316..6973bacdf 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -816,16 +816,12 @@ jax_multiplatform_test( jax_multiplatform_test( name = "pytorch_interoperability_test", srcs = ["pytorch_interoperability_test.py"], - backend_tags = { - "gpu": [ - "noasan", # TODO(b/392599624): torch fails to build. - ], - }, enable_backends = [ "cpu", "gpu", ], tags = [ + "noasan", # TODO(b/392599624): torch fails to build. "nomsan", # TODO(b/355237462): msan false-positives in torch? "not_build:arm", ],