asan: disable odd_stack_size test for powerpc
authorDmitry Vyukov <dvyukov@google.com>
Mon, 13 Mar 2023 07:43:03 +0000 (08:43 +0100)
committerDmitry Vyukov <dvyukov@google.com>
Mon, 13 Mar 2023 07:45:26 +0000 (08:45 +0100)
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

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

index 205c560..fc31212 100644 (file)
@@ -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>