-
Notifications
You must be signed in to change notification settings - Fork 24
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
Organizing benching code #116
Comments
For code in the Benchmarks are unstable (rust-lang/rust#29553) because Without another gating feature, you cannot test on stable if you have (Somewhat surprisingly, Personally, I feel |
As you said, I believe there's no plan to have And, along the same line, I think all files under |
Well, if it was before, it's not anymore. |
Cool! If it works fine in |
In
unic-bidi
(and going back to the sourceunicode-bidi
crate), I had addedbench_it
feature to not run benching on every single test run.In
travis.yml
, benching is only run once and on the nightly rustc.I think we did this because
#[bench]
was not stable yet. I think it's got stabilized now. Is that so?Also, it is common to have simple data-less benches inside the modules, like unit tests, and not as an integration thing. Should we do this, or not?
The text was updated successfully, but these errors were encountered: