-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
treat setting the number of test-threads to 0 as an error #38945
Conversation
Running test with cargo test -- --test-threads=0 causes cargo to hang as 0 is a valid usize. Adding zero threads as a special case to the error handling.
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @brson (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
Some programs treat 0 as "number of cores," should we also do that? |
@Mark-Simulacrum do you have an example where this is done? |
Hmm, actually, I can't find such an example right now. I think Cargo defaults to number of cores by default, though, so maybe just documenting that in the It's worth noting the test --help currently includes the following after the main options summary. I'm not sure that's the best place.
|
Thanks! Next weekend, I will add that to the |
@battisti sorry for the long turnaround! It looks like tidy checks may be failing though? If you want to fix that up I'll r+ and we can merge |
@alexcrichton looks like I fixed the tidy check, but now the OS X checks fail due to an: "unknown archive format". |
@bors: r+ No worries, looks good to me! |
📌 Commit 0a4c268 has been approved by |
treat setting the number of test-threads to 0 as an error It is currently possible to call `cargo test -- --test-threads=0` which will cause cargo to hang until aborted. This change will fix that and will report an appropriate error to the user.
☀️ Test successful - status-appveyor, status-travis |
It is currently possible to call
cargo test -- --test-threads=0
which will cause cargo to hang until aborted. This change will fix that and will report an appropriate error to the user.