-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
way to run and compare all benchmarks in a crate #39
Comments
This is neat idea I would really love to implement, because I have very similar use case when I ran several benchmarks (from different crates) using shell-script. Unfortunately, it will not work because $ cargo bench -- compare -t 0.1
Finished `bench` profile [optimized] target(s) in 0.04s
Running unittests src/lib.rs (target/release/deps/pmem-dbbad5b7c1126fc4)
error: Unrecognized option: 't'
error: bench failed, to rerun pass `-p pmem --lib` One workaround I can think of is to implement separate runner |
having |
here's an example of where I was using tango... but it could be better if I was able to see all benches that are made with tango |
right now we have to do
It would be nice if we could instead do
Right now my workflow combines
tango-bench
andcargo export
The text was updated successfully, but these errors were encountered: