projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b63d810
)
[lib/Fuzzer] use handle_abort=1 by default so that when assert() fires we save the...
author
Kostya Serebryany
<kcc@google.com>
Tue, 5 May 2015 01:42:55 +0000
(
01:42
+0000)
committer
Kostya Serebryany
<kcc@google.com>
Tue, 5 May 2015 01:42:55 +0000
(
01:42
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236476
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Fuzzer/FuzzerSanitizerOptions.cpp
patch
|
blob
|
history
diff --git
a/lib/Fuzzer/FuzzerSanitizerOptions.cpp
b/lib/Fuzzer/FuzzerSanitizerOptions.cpp
index 1c58f3a0694fca3b9a9e4da13a5c5e5ca349ef73..b2f20dd4ddf0166bca464e5d094a3ebf1ccd5b71 100644
(file)
--- a/
lib/Fuzzer/FuzzerSanitizerOptions.cpp
+++ b/
lib/Fuzzer/FuzzerSanitizerOptions.cpp
@@
-12,7
+12,8
@@
// ASAN options:
// * don't dump the coverage to disk.
// * enable coverage by default.
+// * enable handle_abort.
//===----------------------------------------------------------------------===//
extern "C" const char *__asan_default_options() {
- return "coverage_pcs=0:coverage=1";
+ return "coverage_pcs=0:coverage=1
:handle_abort=1
";
}