[compiler-rt] Disable test broken by #117624 (PR #118858)

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 12:33:37 PST 2024


https://github.com/vitalybuka updated https://github.com/llvm/llvm-project/pull/118858

>From e103c2ac9efe3b6c41f2d450086e98179c49802e Mon Sep 17 00:00:00 2001
From: Vitaly Buka <vitalybuka at google.com>
Date: Thu, 5 Dec 2024 11:05:11 -0800
Subject: [PATCH 1/2] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20in?=
 =?UTF-8?q?itial=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Created using spr 1.3.4
---
 compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp b/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
index bf82a517df37e9..aa9df949262d85 100644
--- a/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
+++ b/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
@@ -2,6 +2,8 @@
 // false negatives with the BFD linker.
 // RUN: %clangxx_asan -fuse-ld=bfd -Wl,-gc-sections -ffunction-sections -fdata-sections -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: android
+
 #include <string.h>
 int main(int argc, char **argv) {
   static char XXX[10];

>From 00b5bbb121a3da8570e8d06f70b4a62f90978194 Mon Sep 17 00:00:00 2001
From: Vitaly Buka <vitalybuka at google.com>
Date: Thu, 5 Dec 2024 12:33:29 -0800
Subject: [PATCH 2/2] Update global-overflow-bfd.cpp

---
 compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp b/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
index aa9df949262d85..080aab49624c23 100644
--- a/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
+++ b/compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp
@@ -2,6 +2,7 @@
 // false negatives with the BFD linker.
 // RUN: %clangxx_asan -fuse-ld=bfd -Wl,-gc-sections -ffunction-sections -fdata-sections -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// FIXME: Confirm if bfd tests are relevant for Android, this one is broken after https://github.com/llvm/llvm-project/pull/117624.
 // UNSUPPORTED: android
 
 #include <string.h>



More information about the llvm-commits mailing list