diff --git a/tensorflow/core/common_runtime/BUILD b/tensorflow/core/common_runtime/BUILD index f29743caa0b..1403b05de38 100644 --- a/tensorflow/core/common_runtime/BUILD +++ b/tensorflow/core/common_runtime/BUILD @@ -2521,7 +2521,9 @@ tf_cc_test_gpu( name = "lower_if_op_test", size = "small", srcs = ["lower_if_op_test.cc"], - tags = tf_cuda_tests_tags(), + tags = tf_cuda_tests_tags() + [ + "no_cuda_asan", # TODO(b/171575050): re-enable once fixed. + ], deps = [ ":core_cpu", ":core_cpu_internal", diff --git a/tensorflow/python/kernel_tests/random/BUILD b/tensorflow/python/kernel_tests/random/BUILD index 9bcef78c507..a7ebd672973 100644 --- a/tensorflow/python/kernel_tests/random/BUILD +++ b/tensorflow/python/kernel_tests/random/BUILD @@ -125,6 +125,9 @@ cuda_py_test( size = "medium", srcs = ["stateless_random_ops_test.py"], shard_count = 10, + xla_tags = [ + "no_cuda_asan", # times-out + ], deps = [ "//tensorflow/python:array_ops", "//tensorflow/python:client_testlib",