[llvm] [bazel][libc] Temporarily disable full_build include tests (PR #216359)

Walter Lee via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 14 10:00:34 PDT 2026


https://github.com/googlewalt created https://github.com/llvm/llvm-project/pull/216359

They are currently broken due to
https://github.com/llvm/llvm-project/commit/1f4574c6033cae84c88ca69bb2b73c9b029925e3. We need a few hours to resolve it, and we're using this to unblock our CI.

>From 9619c1a1d59049fba1cca2be9883db6336d70eef Mon Sep 17 00:00:00 2001
From: Walter Lee <waltl at google.com>
Date: Fri, 14 Aug 2026 16:57:01 +0000
Subject: [PATCH] [bazel][libc] Temporarily disable full_build include tests

They are currently broken due to
https://github.com/llvm/llvm-project/commit/1f4574c6033cae84c88ca69bb2b73c9b029925e3.
We need a few hours to resolve it, and we're using this to unblock our
CI.
---
 utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl b/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
index 9aa3073517ac2..f878b200979be 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
+++ b/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
@@ -63,6 +63,8 @@ def libc_test(
 
     if full_build:
         copts = copts + _FULL_BUILD_COPTS
+        # Temporarily disable full_build tests (currently broken) to unblock CI.
+        tags = tags + ["manual", "notap"]
     cc_test(
         name = name,
         local_defines = local_defines + _TEST_DEFINES + LIBC_CONFIGURE_OPTIONS,



More information about the llvm-commits mailing list