mirror of https://github.com/google/oss-fuzz.git
Fix #540
This commit is contained in:
parent
9bff06cba6
commit
55c401a7ea
|
@ -92,7 +92,10 @@ If your fuzz target is running for many days and does not find bugs or new cover
|
|||
- It is also possible that the fuzzer is running too slow (you may check the speed of your targets at https://oss-fuzz.com/)
|
||||
|
||||
In either case, look at the [coverage reports](clusterfuzz.md#coverage-reports) for your target(s) and figure out why some parts of the code are not covered.
|
||||
|
||||
|
||||
## What happens when I rename a fuzz target ?
|
||||
If you rename your fuzz targets, the existing bugs for those targets will get closed and fuzzing will start from scratch from a fresh corpora (seed corpus only). Similar corpora will get accumulated over time depending on the number of cpu cycles that original fuzz target has run. If this is not desirable, make sure to copy the accumulated corpora from the original fuzz target (instructions to download [here](corpora.md#downloading-the-corpus)) and restore it to the new GCS location later (instruction to find the new location [here](corpora.md#viewing-the-corpus-for-a-fuzz-target)).
|
||||
|
||||
## Does OSS-Fuzz support AFL?
|
||||
OSS-Fuzz *uses* [AFL](http://lcamtuf.coredump.cx/afl/) as one of its [fuzzing engines](glossary.md#fuzzing-engine) but this is an implementation detail. Just follow the [ideal integration guide](ideal_integration.md) and OSS-Fuzz will use all its fuzzing engines on your code.
|
||||
|
||||
|
|
Loading…
Reference in New Issue