Disable MSAN testing for cache-key unit tests.

This is an existing issue with the compilation cache tests.
The refactoring of the cache key generation part into a separate
file requires tagging the refactored tests also.

PiperOrigin-RevId: 551972670
This commit is contained in:
jax authors 2023-07-28 16:01:40 -07:00
parent a3a4c16679
commit 9e7502ce60

View File

@ -927,6 +927,9 @@ jax_test(
jax_test(
name = "cache_key_test",
srcs = ["cache_key_test.py"],
backend_tags = {
"tpu": ["nomsan"], # TODO(b/213388298): this test fails msan.
},
deps = ["//jax:cache_key"],
)