From 38c7c989ce3f5ec23f3f186c49793c3f8b6283f9 Mon Sep 17 00:00:00 2001 From: JackCaoG <59073027+JackCaoG@users.noreply.github.com> Date: Thu, 9 Nov 2023 09:47:41 -0800 Subject: [PATCH] Dsiable C++ test correctly (#5783) --- test/cpp/BUILD | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/test/cpp/BUILD b/test/cpp/BUILD index 6a343a1b3ac6..fd53eefc377e 100644 --- a/test/cpp/BUILD +++ b/test/cpp/BUILD @@ -101,15 +101,16 @@ ptxla_cc_test( ], ) -ptxla_cc_test( - name = "test_xla_backend_intf", - srcs = ["test_xla_backend_intf.cpp"], - deps = [ - ":cpp_test_util", - "//torch_xla/csrc:tensor", - "@com_google_googletest//:gtest_main", - ], -) +# Disable this test since it is flaky on upstream +# ptxla_cc_test( +# name = "test_xla_backend_intf", +# srcs = ["test_xla_backend_intf.cpp"], +# deps = [ +# ":cpp_test_util", +# "//torch_xla/csrc:tensor", +# "@com_google_googletest//:gtest_main", +# ], +# ) ptxla_cc_test( name = "test_xla_sharding",