]> git.proxmox.com Git - rustc.git/blob - src/libcompiler_builtins/compiler-rt/test/sanitizer_common/TestCases/Linux/assert.cc
New upstream version 1.25.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / test / sanitizer_common / TestCases / Linux / assert.cc
1 // Test the handle_abort option.
2
3 // clang-format off
4 // RUN: %clangxx %s -o %t
5 // RUN: not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
6 // RUN: %env_tool_opts=handle_abort=0 not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
7 // RUN: %env_tool_opts=handle_abort=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK1 %s
8 // clang-format on
9
10 #include <assert.h>
11 #include <stdio.h>
12 #include <sanitizer/asan_interface.h>
13
14 void death() {
15 fprintf(stderr, "DEATH CALLBACK\n");
16 }
17
18 int main(int argc, char **argv) {
19 __sanitizer_set_death_callback(death);
20 assert(argc == 100);
21 }
22
23 // CHECK0-NOT: Sanitizer:DEADLYSIGNAL
24 // CHECK1: ERROR: {{.*}}Sanitizer: ABRT
25 // CHECK1: {{ #0 }}
26 // CHECK1: DEATH CALLBACK
27 // CHECK0-NOT: Sanitizer