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
fuzz_target
I'm currently doing something like this to work around the one parameter limitation:
fuzz_target!(|tuple: (geo_types::Polygon<f32>, f32)| { let (polygon, epsilon) = tuple; let simplified = polygon.simplify(&epsilon); check_result(polygon, simplified); });
The text was updated successfully, but these errors were encountered:
Yeah, we could have the macro do this tuple dance for you, for sure.
Sorry, something went wrong.
Arbitrary
fuzz_target!
Going to close this in favor of rust-fuzz/libfuzzer#77, since that issue is in the right repo.
No branches or pull requests
I'm currently doing something like this to work around the one parameter limitation:
The text was updated successfully, but these errors were encountered: