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

The `--features` flag cannot be used multiple times

Open madsmtm opened this issue 1 year ago • 1 comments

Running the following fails, while it would succeed were I using a normal cargo run.

cargo +nightly fuzz run my_fuzz_target --features=foo --features=bar

I know I can just combine this into --features=foo,bar, but for composability it would be nice if cargo-fuzz didn't require me to do so.

madsmtm avatar May 27 '23 22:05 madsmtm

Agreed that we should match cargo's behavior here. Would be receptive to a PR that implemented this.

fitzgen avatar May 30 '23 17:05 fitzgen