cargo-fuzz icon indicating copy to clipboard operation
cargo-fuzz copied to clipboard

libFuzzer arguments aren't passed to the underlying binary with -j

Open TheBlueMatt opened this issue 5 years ago • 0 comments

eg if you are passing -detect_leaks=0: cargo fuzz run --features libfuzzer_fuzz full_stack_target -- -detect_leaks=0 works fine, cargo fuzz run --features libfuzzer_fuzz -j2 full_stack_target -- -detect_leaks=0 does not get the -detect_leaks argument passed through.

TheBlueMatt avatar Jan 19 '20 22:01 TheBlueMatt