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
--release
I think five steps are necessary:
TestFuzzWithDeprecations
test-fuzz/cargo-test-fuzz/src/bin/cargo_test_fuzz/transition.rs
Line 26 in 42bacfd
release
TestFuzz
test-fuzz/cargo-test-fuzz/src/lib.rs
Line 74 in 42bacfd
From
Line 133 in 42bacfd
build
cargo
Line 231 in 42bacfd
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think five steps are necessary:
TestFuzzWithDeprecations
struct to add the--release
flag:test-fuzz/cargo-test-fuzz/src/bin/cargo_test_fuzz/transition.rs
Line 26 in 42bacfd
release
field to thisTestFuzz
struct:test-fuzz/cargo-test-fuzz/src/lib.rs
Line 74 in 42bacfd
From
implementation to set therelease
field in theTestFuzz
struct when that field is set in theTestFuzzWithDeprecations
struct:test-fuzz/cargo-test-fuzz/src/bin/cargo_test_fuzz/transition.rs
Line 133 in 42bacfd
build
function so that it checks whether therelease
field is set, and adds--release
to the flags passed tocargo
when it is:test-fuzz/cargo-test-fuzz/src/lib.rs
Line 231 in 42bacfd
The text was updated successfully, but these errors were encountered: