-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libFuzzer continuous fuzzing/jobs #330
Comments
I've tried reproducing this issue and I'm not sure what the actual vs. intended behavior should be:
It seems to be finding multiple crashes just fine. Was this fixed in some previous code change, or am I misunderstanding the issue at hand? |
The fuzzer is restarted after the first crash ATM. The issue is mainly to investigate and handle appropriately libfuzzers args like |
libFuzzer stops when first crash is found. We may change that by providing
-jobs=9999
option, which may be good for continuous fuzzing. But restart may be better?Anyway, once the option is used, libFuzzer stops printing statistics to stdout and writes them to fuzz-JOB.txt file, which position (in filesystem) we can't control.
Research about libFuzzer continuous fuzzing is required. Then appropriate fixes, including changes to
populate_stats
method.The text was updated successfully, but these errors were encountered: