You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
778 B
25 lines
778 B
// Test the handle_abort option.
|
|
// RUN: %clang %s -o %t
|
|
// RUN: not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
|
|
// RUN: %env_tool_opts=handle_abort=0 not --crash %run %t 2>&1 | FileCheck --check-prefix=CHECK0 %s
|
|
// RUN: %env_tool_opts=handle_abort=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK1 %s
|
|
// FIXME: implement in other sanitizers, not just asan.
|
|
// XFAIL: msan
|
|
// XFAIL: lsan
|
|
// XFAIL: tsan
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <sanitizer/asan_interface.h>
|
|
|
|
void death() {
|
|
fprintf(stderr, "DEATH CALLBACK\n");
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
__sanitizer_set_death_callback(death);
|
|
assert(argc == 100);
|
|
}
|
|
// CHECK1: ERROR: {{.*}}Sanitizer:
|
|
// CHECK1: DEATH CALLBACK
|
|
// CHECK0-NOT: Sanitizer
|