-
Notifications
You must be signed in to change notification settings - Fork 38.7k
fuzz: Add minisketch fuzz test #23496
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
Conversation
faa4cd5 to
fa18631
Compare
mjdietzx
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concept and Approach ACK
|
Code Review ACK fa186314840a7da165adbfa86a316d8a4c34b706 |
fa18631 to
faece21
Compare
|
Rebased to fix silent merge conflict. Should be trivial to re-ACK |
faece21 to
fa74d45
Compare
|
re-ACK fa74d45 |
| { | ||
| const auto entry{fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(1, std::numeric_limits<uint32_t>::max() - 1)}; | ||
| const auto KeepDiff{[&] { | ||
| bool& mut{diff[entry]}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Micronit: diff[entry] ^= true; or diff[entry] ^= 1; also works (feel free to ignore).
|
utACK fa74d45 |
No description provided.