-
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
Add and move tests for jobs of cargo build
#7695
Add and move tests for jobs of cargo build
#7695
Conversation
A test when argument is negative is added. In addition, `default_cargo_config_jobs` and `good_cargo_config_jobs` is moved from `testsuite/bad_config.rs` to `testsuite/build.rs` because these tests are not for `bad config`.
(rust_highfive has picked a reviewer for you, use r? to override) |
src/cargo/core/manifest.rs
Outdated
@@ -222,7 +222,7 @@ impl TargetKind { | |||
} | |||
} | |||
|
|||
/// Information about a binary, a library, an example, etc. that is part of the | |||
/// Information about a binary, a library, an example, etc. That is part of the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is really a typo. Deconstructing:
Information about a thing that is part of the package.
The second part isn't a separate sentence.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, this is not typo as you pointed out. I remove this commit from PR.
1ac3ad3
to
4956d3e
Compare
cargo build
and fix typocargo build
The fix for typo was my mistake, so I removed that commit and fixed the title and summary. Could you review this again? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, will merge once CI is fixed by #7699.
@bors: r=ehuss |
📌 Commit 4956d3e has been approved by |
…o_build, r=ehuss Add and move tests for jobs of `cargo build` A test when argument is negative is added. In addition, `default_cargo_config_jobs` and `good_cargo_config_jobs` is moved from `testsuite/bad_config.rs` to `testsuite/build.rs` because these tests are not for `bad config`.
☀️ Test successful - checks-azure |
A test when argument is negative is added. In addition,
default_cargo_config_jobs
andgood_cargo_config_jobs
is moved fromtestsuite/bad_config.rs
totestsuite/build.rs
because these tests are not forbad config
.