We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Arbitrary
fuzz_target!
A possible upgrade would be the ability for creating multiple variables that are to be fuzzed from the same data in the fuzz_target macro.
fuzz_target
Something like this?
fuzz_target!(|rgb: Rgb, other: Other| {})
That, or have another macro named fuzz_targets
fuzz_targets
The text was updated successfully, but these errors were encountered:
As a short term fix you can wrap both variables in a tuple
Sorry, something went wrong.
Relevant: rust-fuzz/cargo-fuzz#252
fuzz_target!(|(rgb, other): (Rgb, Other)| {})
Unexpectely the above syntax also doesn't work.
I used this to work around the issue:
fuzz_target!(|data: (Rgb, Other)| { let (rbg, other) = data; })
No branches or pull requests
A possible upgrade would be the ability for creating multiple variables that are to be fuzzed from the same data in the
fuzz_target
macro.Something like this?
That, or have another macro named
fuzz_targets
The text was updated successfully, but these errors were encountered: