https://github.com/steakhal created https://github.com/llvm/llvm-project/pull/218617
The PR intended to workaround some failing internal build bots tracked as rdar://185749574 However, this (7c9ba667766060d112e5851879c305a45d035034) itself caused upstream build bots to fail: https://lab.llvm.org/buildbot/#/builders/225/builds/16454 https://lab.llvm.org/buildbot/#/builders/144/builds/63036 https://lab.llvm.org/buildbot/#/builders/27/builds/4103 https://lab.llvm.org/buildbot/#/builders/65/builds/39394 https://lab.llvm.org/buildbot/#/builders/190/builds/48503 https://lab.llvm.org/buildbot/#/builders/154/builds/35610 https://lab.llvm.org/buildbot/#/builders/174/builds/40232 For example: ``` XPASS: Clang :: Analysis/Scalable/source-edit-generation/happy-path.cpp (2274 of 111631) ******************** TEST 'Clang :: Analysis/Scalable/source-edit-generation/happy-path.cpp' FAILED ******************** ``` and ``` XPASS: Clang :: Analysis/Scalable/source-edit-generation/write-failure.cpp (8964 of 98502) ******************** TEST 'Clang :: Analysis/Scalable/source-edit-generation/write-failure.cpp' FAILED ******************** ``` Let's opt for using `UNSUPPORTED` for these tests until the breakage is fixed. From e2d96765d1f13b69ae77e62ec76f83c686b6e6a7 Mon Sep 17 00:00:00 2001 From: Balazs Benics <[email protected]> Date: Tue, 25 Aug 2026 08:38:17 +0100 Subject: [PATCH] Followup for #218572 broken build bots The PR intended to workaround some failing internal build bots tracked as rdar://185749574 However, this (7c9ba667766060d112e5851879c305a45d035034) itself caused upstream build bots to fail: https://lab.llvm.org/buildbot/#/builders/225/builds/16454 https://lab.llvm.org/buildbot/#/builders/144/builds/63036 https://lab.llvm.org/buildbot/#/builders/27/builds/4103 https://lab.llvm.org/buildbot/#/builders/65/builds/39394 https://lab.llvm.org/buildbot/#/builders/190/builds/48503 https://lab.llvm.org/buildbot/#/builders/154/builds/35610 https://lab.llvm.org/buildbot/#/builders/174/builds/40232 For example: ``` XPASS: Clang :: Analysis/Scalable/source-edit-generation/happy-path.cpp (2274 of 111631) ******************** TEST 'Clang :: Analysis/Scalable/source-edit-generation/happy-path.cpp' FAILED ******************** ``` and ``` XPASS: Clang :: Analysis/Scalable/source-edit-generation/write-failure.cpp (8964 of 98502) ******************** TEST 'Clang :: Analysis/Scalable/source-edit-generation/write-failure.cpp' FAILED ******************** ``` Let's opt for using `UNSUPPORTED` for these tests until the breakage is fixed. --- .../Analysis/Scalable/source-edit-generation/coexistence.cpp | 2 +- .../Analysis/Scalable/source-edit-generation/happy-path.cpp | 2 +- .../Analysis/Scalable/source-edit-generation/write-failure.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/test/Analysis/Scalable/source-edit-generation/coexistence.cpp b/clang/test/Analysis/Scalable/source-edit-generation/coexistence.cpp index 0e3ed5d0ca65d..29ff2df5b0e74 100644 --- a/clang/test/Analysis/Scalable/source-edit-generation/coexistence.cpp +++ b/clang/test/Analysis/Scalable/source-edit-generation/coexistence.cpp @@ -6,7 +6,7 @@ // REQUIRES: plugins -// XFAIL: * +// UNSUPPORTED: * // RUN: rm -rf %t && mkdir -p %t // RUN: %clang_cc1 -load %llvmshlibdir/SSAFTestTransformationPlugin%pluginext \ diff --git a/clang/test/Analysis/Scalable/source-edit-generation/happy-path.cpp b/clang/test/Analysis/Scalable/source-edit-generation/happy-path.cpp index e9c25b852e8f2..8196fa0f368dc 100644 --- a/clang/test/Analysis/Scalable/source-edit-generation/happy-path.cpp +++ b/clang/test/Analysis/Scalable/source-edit-generation/happy-path.cpp @@ -7,7 +7,7 @@ // REQUIRES: plugins -// XFAIL: * +// UNSUPPORTED: * // RUN: rm -rf %t && mkdir -p %t diff --git a/clang/test/Analysis/Scalable/source-edit-generation/write-failure.cpp b/clang/test/Analysis/Scalable/source-edit-generation/write-failure.cpp index b24880a3a5c4f..9681b7b76ec3e 100644 --- a/clang/test/Analysis/Scalable/source-edit-generation/write-failure.cpp +++ b/clang/test/Analysis/Scalable/source-edit-generation/write-failure.cpp @@ -5,7 +5,7 @@ // REQUIRES: plugins -// XFAIL: * +// UNSUPPORTED: * // RUN: rm -rf %t && mkdir -p %t _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
