Open frewsxcv opened 6 years ago
Also the Rust + libfuzzer integration is working for me for other crates, just not this one.
Judging by "No such file or directory: ; exiting" it seems to be the same issue I ran into and fixed in https://github.com/rust-fuzz/targets/pull/138. There I started to pass -max_total_time=0
instead of an empty string to make libFuzzer stop treating that argument as a directory.
cargo run -v target pulldown_cmark_read --fuzzer libfuzzer
on master:cargo run -v target pulldown_cmark_read --fuzzer libfuzzer
on master after runningcargo update -p libfuzzer-sys
:I noticed the
rust-fuzz/cargo-fuzz
libfuzzer flags don't match therust-fuzz/targets
libfuzzer flags. I made therust-fuzz/targets
flags match the other ones, which got rid of thesymbol not found
errors, but I still hit theNo such file or directory: ; exiting
error. No idea where this is coming from.