summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Posix/handle_abort_on_error.cc
blob: fa8cdd4ce0c8624ba32ac8a691ae434e116437c8 (plain)
1
2
3
4
5
6
7
8
9
// Regression test: this used to abort() in SIGABRT handler in an infinite loop.
// RUN: %clangxx_asan -O0 %s -o %t && %env_asan_opts=handle_abort=1,abort_on_error=1 not --crash %run %t 2>&1 | FileCheck %s

#include <stdlib.h>

int main() {
  abort();
  // CHECK: ERROR: AddressSanitizer: ABRT
}