You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fuzzing harness generator should operate in a manner similar to cargo fuzz init: it should create a subfolder in your project that would already have a Cargo.toml and have everything ready to go.
Since currently some harnesses may not be generate correctly and may not compile, we do not want to take the cargo-fuzz approach of "one project with many binaries", but rather generate multiple independently compiled projects so that if one fails to compile, the rest can still function.
The text was updated successfully, but these errors were encountered:
Right now fuzzing harnesses are not even written to individual files, they're just returned as strings. We probably want to write a layer on top of that.
Fuzzing harness generator should operate in a manner similar to
cargo fuzz init
: it should create a subfolder in your project that would already have a Cargo.toml and have everything ready to go.Since currently some harnesses may not be generate correctly and may not compile, we do not want to take the cargo-fuzz approach of "one project with many binaries", but rather generate multiple independently compiled projects so that if one fails to compile, the rest can still function.
The text was updated successfully, but these errors were encountered: