Update ideal_integration.md

This commit is contained in:
Oliver Chang 2017-04-24 19:21:44 -07:00 committed by GitHub
parent 084ab93430
commit 69359d9612
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ The syntax is described [here](http://libfuzzer.info/#dictionaries).
## Coverage
For a fuzzer to be useful, it must have good coverage in the code that it is testing. You can view the coverage
for your fuzz targets by looking at the [fuzzer stats](https://github.com/google/oss-fuzz/blob/master/docs/clusterfuzz.md#fuzzer-stats) dashboard on ClusterFuzz, as well as
(coverage reports)[https://github.com/google/oss-fuzz/blob/master/docs/clusterfuzz.md#coverage-reports]
[coverage reports](https://github.com/google/oss-fuzz/blob/master/docs/clusterfuzz.md#coverage-reports).
Coverage can often be improved by adding dictionaries, more inputs for the seed corpora, and fixing
timeouts/out-of-memory bugs in your targets.