diff options
author | Kostya Serebryany <kcc@google.com> | 2017-05-09 01:34:27 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-05-09 01:34:27 +0000 |
commit | b068087bd8fe568f9d18abd3186b051013cc259b (patch) | |
tree | e324f809a5e8e77cd0012283ca87409f282a3699 /llvm/lib | |
parent | bb497d3895671d797816fc0be60e526a29cfd44f (diff) | |
download | bcm5719-llvm-b068087bd8fe568f9d18abd3186b051013cc259b.tar.gz bcm5719-llvm-b068087bd8fe568f9d18abd3186b051013cc259b.zip |
[libFuzzer] update docs on -print_coverage/-dump_coverage
llvm-svn: 302498
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFlags.def | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFlags.def b/llvm/lib/Fuzzer/FuzzerFlags.def index 0a1ff1b1df6..7ff196c8fa9 100644 --- a/llvm/lib/Fuzzer/FuzzerFlags.def +++ b/llvm/lib/Fuzzer/FuzzerFlags.def @@ -92,10 +92,10 @@ FUZZER_FLAG_INT(print_pcs, 0, "If 1, print out newly covered PCs.") FUZZER_FLAG_INT(print_final_stats, 0, "If 1, print statistics at exit.") FUZZER_FLAG_INT(print_corpus_stats, 0, "If 1, print statistics on corpus elements at exit.") -FUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information at exit." - " Experimental, only with trace-pc-guard") -FUZZER_FLAG_INT(dump_coverage, 0, "If 1, dump coverage information at exit." - " Experimental, only with trace-pc-guard") +FUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information as text" + " at exit.") +FUZZER_FLAG_INT(dump_coverage, 0, "If 1, dump coverage information as a" + " .sancov file at exit.") FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.") FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGBUS.") FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.") |