From 5a23cdfd379232dae736e56372888a87e7e2f8e4 Mon Sep 17 00:00:00 2001 From: David Dunleavy Date: Tue, 4 Jun 2024 16:19:10 -0700 Subject: [PATCH] Mark `//build_tools/configure:configure_test` as `notap` with associated comment PiperOrigin-RevId: 640317959 --- third_party/xla/build_tools/configure/BUILD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/third_party/xla/build_tools/configure/BUILD b/third_party/xla/build_tools/configure/BUILD index 3be5b6a0446109..ab595693d34213 100644 --- a/third_party/xla/build_tools/configure/BUILD +++ b/third_party/xla/build_tools/configure/BUILD @@ -37,6 +37,10 @@ py_test( "testdata/nvcc_clang.bazelrc", "testdata/nvcc_gcc.bazelrc", ], + # After https://github.com/openxla/xla/commit/7d3043283, this test is no + # longer hermetic. This works in OSS tests because the docker container has + # clang-17 and gcc, but it's a little sketchy. + tags = ["notap"], deps = [ ":configure", "//build_tools:test_utils",