Skip to content

Commit

Permalink
[libfuzzer] sancov documentation update
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282953 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
aizatsky-chromium committed Sep 30, 2016
1 parent 05539ce commit e4bd610
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/LibFuzzer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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>`_,
Expand Down

0 comments on commit e4bd610

Please sign in to comment.