-
-
Notifications
You must be signed in to change notification settings - Fork 321
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
Which Observer/Feedback Combination Should I Use for Coverage Guidance? #2708
Comments
If you know the size of the map beforehand, use a ConstMapObserver |
The fuzzbench example ( In general, it'd be really nice to have some more beginner-friendly documentation for the observers/feedbacks. The book doesn't go into any details and the code documentation isn't very extensive and requires a good understanding of the different options already. |
PRs welcome :) |
Not sure you want a PR based on my understanding :D. This also seems related to #833, which is still a good idea imo. |
Why would we not want PRs? Better documentation is a very good idea |
I'm confused as to which combination of
MapObserver
s andFeedback
s I should use. Is there a good overview of what the different options do/how to combine them? I have found some ways to accomplish some progress, but I feel like I might be missing something. Sorry if this is a stupid question.I'm collecting coverage based on clang's
-fsanitize-coverage=trace-pc-guard
. The implementation of the two functions is a simple set or counter logic, redirected into some shared memory to get coverage back to the fuzzer:In the fuzzer, I have a
ShMem
object that contains the coverage data. How do I process it?The text was updated successfully, but these errors were encountered: