diff options
Diffstat (limited to 'compiler-rt/test/asan/TestCases/on_error_callback.cc')
| -rw-r--r-- | compiler-rt/test/asan/TestCases/on_error_callback.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/on_error_callback.cc b/compiler-rt/test/asan/TestCases/on_error_callback.cc new file mode 100644 index 00000000000..d0cec2eb270 --- /dev/null +++ b/compiler-rt/test/asan/TestCases/on_error_callback.cc @@ -0,0 +1,16 @@ +// RUN: %clangxx_asan -O2 %s -o %t && not %t 2>&1 | FileCheck %s + +#include <stdio.h> +#include <stdlib.h> + +extern "C" +void __asan_on_error() { + fprintf(stderr, "__asan_on_error called"); +} + +int main() { + char *x = (char*)malloc(10 * sizeof(char)); + free(x); + return x[5]; + // CHECK: __asan_on_error called +} |

