[lib/Fuzzer] use handle_abort=1 by default so that when assert() fires we save the test case

llvm-svn: 236476
This commit is contained in:
Kostya Serebryany 2015-05-05 01:42:55 +00:00
parent e48630fc7c
commit 177582c90f
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@
// ASAN options: // ASAN options:
// * don't dump the coverage to disk. // * don't dump the coverage to disk.
// * enable coverage by default. // * enable coverage by default.
// * enable handle_abort.
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
extern "C" const char *__asan_default_options() { extern "C" const char *__asan_default_options() {
return "coverage_pcs=0:coverage=1"; return "coverage_pcs=0:coverage=1:handle_abort=1";
} }