We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cargo bench runs all benchmarks cargo bench --bench=a runs benchmark a cargo bench --bench=a --bench=b gives error: Invalid arguments. cargo bench --test=a --test=b gives error: Invalid arguments.
cargo bench
cargo bench --bench=a
a
cargo bench --bench=a --bench=b
error: Invalid arguments.
cargo bench --test=a --test=b
cargo test --test=a --test=b runs test suites a and b cargo test --bench=a --bench=b runs test suites for benches a and b
cargo test --test=a --test=b
b
cargo test --bench=a --bench=b
It seems that cargo bench handles its command line arguments differently than cargo test.
cargo test
The text was updated successfully, but these errors were encountered:
Thanks for the report! Probably a small bug with how we parse the command line arguments here...
Sorry, something went wrong.
df882fa
No branches or pull requests
cargo bench
runs all benchmarkscargo bench --bench=a
runs benchmarka
cargo bench --bench=a --bench=b
giveserror: Invalid arguments.
cargo bench --test=a --test=b
giveserror: Invalid arguments.
cargo test --test=a --test=b
runs test suitesa
andb
cargo test --bench=a --bench=b
runs test suites for benchesa
andb
It seems that
cargo bench
handles its command line arguments differently thancargo test
.The text was updated successfully, but these errors were encountered: