Update clusterfuzz.md

This commit is contained in:
Abhishek Arya 2017-04-21 07:55:58 -07:00 committed by GitHub
parent 1ed761a3b0
commit 84f2553356
1 changed files with 5 additions and 3 deletions

View File

@ -29,15 +29,17 @@ memory usage) on our fuzzer statistics dashboard.
## Coverage reports ## Coverage reports
We provide coverage reports, where we highlight the parts of source code that are being We provide coverage reports, where we highlight the parts of source code that are being
reached by your fuzz target. reached by your fuzz target. Make sure to look at the uncovered code marked in red and
add appropriate fuzz targets to cover those usecases.
![coverage_1](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/freetype_coverage_1.png) ![coverage_1](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/freetype_coverage_1.png)
![coverage_2](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/freetype_coverage_2.png) ![coverage_2](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/freetype_coverage_2.png)
## Performance analyzer ## Performance analyzer
You can view performance issues that your fuzz target is running into (e.g. leaks, timeouts, etc) by You can view performance issues that your fuzz target is running into (e.g. leaks, timeouts,
clicking on `Performance` link on our fuzzer statistics dashboard. etc) by clicking on `Performance` link on our fuzzer statistics dashboard. Make sure to fix
all cited issues, so as to keep your fuzz target running efficiently and finding new bugs.
![performance_analyzer](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/expat_performance_analyzer.png) ![performance_analyzer](https://raw.githubusercontent.com/google/oss-fuzz/master/docs/images/expat_performance_analyzer.png)