summaryrefslogtreecommitdiff
path: root/test/gwp_asan/double_delete.cpp
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2019-07-02 16:04:52 +0000
committerMitch Phillips <mitchphillips@outlook.com>2019-07-02 16:04:52 +0000
commit8b4bb06092e014d142044422babf8915544a7fb7 (patch)
tree7e0fd3d142a56b197c65fe7e8d7379ae15b76978 /test/gwp_asan/double_delete.cpp
parentb9c43d5e1ab86abcd715f4487b4e923050270a2d (diff)
downloadcompiler-rt-8b4bb06092e014d142044422babf8915544a7fb7.tar.gz
[GWP-ASan] Add generic unwinders and structure backtrace output.
Summary: Adds two flavours of generic unwinder and all the supporting cruft. If the supporting allocator is okay with bringing in sanitizer_common, they can use the fast frame-pointer based unwinder from sanitizer_common. Otherwise, we also provide the backtrace() libc-based unwinder as well. Of course, the allocator can always specify its own unwinder and unwinder-symbolizer. The slightly changed output format is exemplified in the first comment on this patch. It now better incorporates backtrace information, and displays allocation details on the second line. Reviewers: eugenis, vlad.tsyrklevich Reviewed By: eugenis, vlad.tsyrklevich Subscribers: srhines, kubamracek, mgorny, cryptoad, #sanitizers, llvm-commits, morehouse Tags: #sanitizers, #llvm Differential Revision: https://reviews.llvm.org/D63841 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@364941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/gwp_asan/double_delete.cpp')
-rw-r--r--test/gwp_asan/double_delete.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gwp_asan/double_delete.cpp b/test/gwp_asan/double_delete.cpp
index 6231b70e3..7a1bb867f 100644
--- a/test/gwp_asan/double_delete.cpp
+++ b/test/gwp_asan/double_delete.cpp
@@ -3,7 +3,7 @@
// RUN: not %run %t 2>&1 | FileCheck %s
// CHECK: GWP-ASan detected a memory error
-// CHECK: Double free occurred when trying to free memory at:
+// CHECK: Double free at 0x{{[a-f0-9]+}} (a 1-byte allocation)
#include <cstdlib>