These have been failing on our bots for a while due to
incomplete backtraces. (you don't get the names of the
functions that did the access, just the reporter frames)
See:
https://lab.llvm.org/buildbot/#/builders/170/builds/180
}
TEST_F(BacktraceGuardedPoolAllocatorDeathTest, UseAfterFree) {
+#ifdef __linux__ && __ARM_ARCH == 7
+ // Incomplete backtrace on Armv7 Linux
+ GTEST_SKIP();
+#endif
+
void *Ptr = AllocateMemory(GPA);
DeallocateMemory(GPA, Ptr);
// RUN: %clang_gwp_asan -fomit-frame-pointer -momit-leaf-frame-pointer %s -g -o %t
// RUN: %expect_crash %t
+// Incomplete backtrace on Armv7
+// UNSUPPORTED: armhf-linux
+
#include <stdlib.h>
__attribute__((noinline)) void *allocate_mem() { return malloc(1); }