-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Minor testsuite organization. #7628
Conversation
r? @Eh2406 (rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit 83571ae has been approved by |
⌛ Testing commit 83571ae with merge 5a6f4b7d9cff38654f9c1cbd041540a05400bd58... |
💔 Test failed - checks-azure |
@bors: retry |
⌛ Testing commit 83571ae with merge 92be6adc914a8505816a1f2d510c1d54c96523ca... |
💔 Test failed - checks-azure |
@bors: retry |
Minor testsuite organization. I sometimes get a little lost when looking for the right module for tests. This adds a brief comment to each one explaining what it is. This also includes a few renamed modules, and a few tests have been placed in a location that makes a little more sense to me. There shouldn't be any functional changes here. - Move `build_lib` into `build`. It seemed a little strange to have these tests floating in a separate file. - Rename `build_auth` to `git_auth`. - Rename `small_fd_limits` to `git_gc`. - Rename `resolve` to `minimal_versions`. - Rename `overrides` to `replace`. - Pull out `paths` overrides tests into a separate file.
☀️ Test successful - checks-azure |
Update cargo 11 commits in 750cb1482e4d0e74822cded7ab8b3c677ed8b041..626f0f40efd32e6b3dbade50cd53fdfaa08446ba 2019-11-23 23:06:36 +0000 to 2019-12-03 16:53:04 +0000 - Change some texts to links in README (rust-lang/cargo#7652) - Update config and environment variable docs. (rust-lang/cargo#7650) - Stop ignoring .rs.bk files; rustfmt hasn't generated them in years (rust-lang/cargo#7647) - Various contributing docs updates. (rust-lang/cargo#7642) - Stabilize profile-overrides. (rust-lang/cargo#7591) - Update comment about ResolveVersion default version. (rust-lang/cargo#7637) - Update tests for slight wording change in rustdoc error message. (rust-lang/cargo#7641) - Remove dep_targets. (rust-lang/cargo#7626) - vendor: don't use canonical path in .cargo/config (rust-lang/cargo#7629) - Minor testsuite organization. (rust-lang/cargo#7628) - Remove failing plugin tests. (rust-lang/cargo#7630)
I sometimes get a little lost when looking for the right module for tests. This adds a brief comment to each one explaining what it is. This also includes a few renamed modules, and a few tests have been placed in a location that makes a little more sense to me. There shouldn't be any functional changes here.
build_lib
intobuild
. It seemed a little strange to have these tests floating in a separate file.build_auth
togit_auth
.small_fd_limits
togit_gc
.resolve
tominimal_versions
.overrides
toreplace
.paths
overrides tests into a separate file.