-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Right now, cargo-test-fuzz stops immediately when it cannot generate a corpus for a fuzz target:
test-fuzz/cargo-test-fuzz/src/lib.rs
Lines 1325 to 1330 in 4e6e3ab
| ensure!( | |
| corpus_dir.exists(), | |
| "Could not find or auto-generate `{}`. Please ensure `{}` is tested.", | |
| corpus_dir.to_string_lossy(), | |
| target | |
| ); |
A better approach would be to try to generate a corpus for each fuzz target and, at the end, show the ones for which the operation failed.
I think this should be an easy change.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers