[compiler-rt] bb53249 - asan: disable odd_stack_size test for powerpc

Dmitry Vyukov via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 13 00:45:30 PDT 2023


Author: Dmitry Vyukov
Date: 2023-03-13T08:45:26+01:00
New Revision: bb53249884367d4d8fb6a52bf248e02e5a0cc2df

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

LOG: asan: disable odd_stack_size test for powerpc

Fail on powerpc64 bots with:
AddressSanitizer: CHECK failed: asan_thread.cpp:315 "((AddrIsInStack((uptr)&local))) != (0)"
https://lab.llvm.org/buildbot/#/builders/18/builds/8162
Disable to unbreak bots.

Differential Revision: https://reviews.llvm.org/D145902

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Linux/odd_stack_size.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/odd_stack_size.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/odd_stack_size.cpp
index 205c56051cb20..fc31212b7f18b 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/odd_stack_size.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/odd_stack_size.cpp
@@ -1,6 +1,11 @@
 // RUN: %clangxx -O1 %s -o %t && %run %t
 // UNSUPPORTED: android
 
+// Fail on powerpc64 bots with:
+// AddressSanitizer: CHECK failed: asan_thread.cpp:315 "((AddrIsInStack((uptr)&local))) != (0)"
+// https://lab.llvm.org/buildbot/#/builders/18/builds/8162
+// UNSUPPORTED: target=powerpc64{{.*}}
+
 #include <assert.h>
 #include <stdlib.h>
 #include <sys/resource.h>


        


More information about the llvm-commits mailing list