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

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


Author: Vitaly Buka
Date: 2024-12-05T12:33:50-08:00
New Revision: 0550480fe6a908496255b8f508868a2799a75249

URL: https://github.com/llvm/llvm-project/commit/0550480fe6a908496255b8f508868a2799a75249
DIFF: https://github.com/llvm/llvm-project/commit/0550480fe6a908496255b8f508868a2799a75249.diff

LOG: Disable test broken by #117624 (#118858)

The test fails after #117624
https://lab.llvm.org/buildbot/#/builders/186/builds/4581

Added: 
    

Modified: 
    compiler-rt/test/asan/TestCases/Linux/global-overflow-bfd.cpp

Removed: 
    


################################################################################
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..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,9 @@
 // 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>
 int main(int argc, char **argv) {
   static char XXX[10];


        


More information about the llvm-commits mailing list