diff options
Diffstat (limited to 'test/asan/TestCases/error_report_callback.cc')
| -rw-r--r-- | test/asan/TestCases/error_report_callback.cc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/asan/TestCases/error_report_callback.cc b/test/asan/TestCases/error_report_callback.cc new file mode 100644 index 000000000000..8c5bbe418fc5 --- /dev/null +++ b/test/asan/TestCases/error_report_callback.cc @@ -0,0 +1,21 @@ +// RUN: %clangxx_asan -O0 %s -o %t +// RUN: not %run %t 0 2>&1 | FileCheck %s + +#include <sanitizer/asan_interface.h> +#include <stdio.h> + +static void ErrorReportCallbackOneToZ(const char *report) { + fprintf(stderr, "ABCDEF%sGHIJKL", report); + fflush(stderr); +} + +int main(int argc, char **argv) { + __asan_set_error_report_callback(ErrorReportCallbackOneToZ); + __asan_report_error( + (void *)__builtin_extract_return_addr(__builtin_return_address(0)), 0, 0, + 0, true, 1); + // CHECK: ABCDEF + // CHECK: ERROR: AddressSanitizer + // CHECK: GHIJKL + return 0; +} |
