Don't create hardlink for library test and integrations tests, fixing #7960#7965
Merged
bors merged 1 commit intorust-lang:masterfrom Mar 5, 2020
jiegec:master
Merged
Don't create hardlink for library test and integrations tests, fixing #7960#7965bors merged 1 commit intorust-lang:masterfrom jiegec:master
bors merged 1 commit intorust-lang:masterfrom
jiegec:master
Conversation
Author
|
Seems that the if condition is too broad... |
alexcrichton
reviewed
Mar 4, 2020
ehuss
approved these changes
Mar 5, 2020
Contributor
ehuss
left a comment
There was a problem hiding this comment.
Seems fine to me. I imagine this might break some script out there that is relying on those files without using the JSON output, but I don't think we should cater to that.
The CI failures are unrelated. It looks like the failure issue was fixed a couple hours ago.
Member
|
@bors: r+ |
Contributor
|
📌 Commit 9f07c83 has been approved by |
Contributor
Contributor
|
☀️ Test successful - checks-azure |
This was referenced Mar 5, 2020
bors
added a commit
to rust-lang/rust
that referenced
this pull request
Mar 18, 2020
Update cargo Update cargo 21 commits in bda50510d1daf6e9c53ad6ccf603da6e0fa8103f..7019b3ed3d539db7429d10a343b69be8c426b576 2020-03-02 18:05:34 +0000 to 2020-03-17 21:02:00 +0000 - Run through clippy (rust-lang/cargo#8015) - Fix config profiles using "dev" in `cargo test`. (rust-lang/cargo#8012) - Run CI on all PRs. (rust-lang/cargo#8011) - Add unit-graph JSON output. (rust-lang/cargo#7977) - Split workspace/validate() into multiple functions (rust-lang/cargo#8008) - Use Option::as_deref (rust-lang/cargo#8005) - De-duplicate edges (rust-lang/cargo#7993) - Revert "Disable preserving mtimes on archives" (rust-lang/cargo#7935) - Close the front door for clippy but open the back (rust-lang/cargo#7533) - Fix CHANGELOG.md typos (rust-lang/cargo#7999) - Update changelog note about crate-versions flag. (rust-lang/cargo#7998) - Bump to 0.45.0, update changelog (rust-lang/cargo#7997) - Bump libgit2 dependencies (rust-lang/cargo#7996) - Avoid buffering large amounts of rustc output. (rust-lang/cargo#7838) - Add "Updating" status for git submodules. (rust-lang/cargo#7989) - WorkspaceResolve: Use descriptive lifetime label. (rust-lang/cargo#7990) - Support old html anchors in manifest chapter. (rust-lang/cargo#7983) - Don't create hardlink for library test and integrations tests, fixing rust-lang/cargo#7960 (rust-lang/cargo#7965) - Partially revert change to filter debug_assertions. (rust-lang/cargo#7970) - Try to better handle restricted crate names. (rust-lang/cargo#7959) - Fix bug with new feature resolver and required-features. (rust-lang/cargo#7962)
flip1995
added a commit
to flip1995/rust-clippy
that referenced
this pull request
Mar 19, 2020
flip1995
added a commit
to flip1995/rust-clippy
that referenced
this pull request
Mar 19, 2020
flip1995
added a commit
to flip1995/rust-clippy
that referenced
this pull request
Mar 19, 2020
flip1995
added a commit
to flip1995/rust-clippy
that referenced
this pull request
Mar 19, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related issue: #7960
Problem:
Tests are run under deps, but it is still copied to its parent directory. It leads to separation between the executable and its debug symbols (.dSYM directory).
Solution:
Set hardlink to None.