diff options
| author | Mike Aizatsky <aizatsky@chromium.org> | 2016-09-30 21:07:04 +0000 |
|---|---|---|
| committer | Mike Aizatsky <aizatsky@chromium.org> | 2016-09-30 21:07:04 +0000 |
| commit | 81166cfdd28346aa24584299ed68cea1b7dc6ee5 (patch) | |
| tree | 2b654cbf2874303ac873df751658486b0972d364 /llvm/docs | |
| parent | 1beced8b7569c26a89e793b476799fc479a591bb (diff) | |
| download | bcm5719-llvm-81166cfdd28346aa24584299ed68cea1b7dc6ee5.tar.gz bcm5719-llvm-81166cfdd28346aa24584299ed68cea1b7dc6ee5.zip | |
[libfuzzer] sancov documentation update
llvm-svn: 282953
Diffstat (limited to 'llvm/docs')
| -rw-r--r-- | llvm/docs/LibFuzzer.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index 69919085e2f..e83fa624429 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -673,11 +673,12 @@ You can get the coverage for your corpus like this: .. code-block:: console - ASAN_OPTIONS=coverage=1:html_cov_report=1 ./fuzzer CORPUS_DIR -runs=0 + ASAN_OPTIONS=coverage=1 ./fuzzer CORPUS_DIR -runs=0 This will run all tests in the CORPUS_DIR but will not perform any fuzzing. -At the end of the process it will dump a single html file with coverage information. -See SanitizerCoverage_ for details. +At the end of the process it will dump a single ``.sancov`` file with coverage +information. See SanitizerCoverage_ for details on querying the file using the +``sancov`` tool. You may also use other ways to visualize coverage, e.g. using `Clang coverage <http://clang.llvm.org/docs/SourceBasedCodeCoverage.html>`_, |

