-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rollup of 15 pull requests #62335
Rollup of 15 pull requests #62335
Commits on Jun 22, 2019
-
squash commit for nth_back on chunks exact
wip nth_back for chunks_exact working nth_back for chunks exact Signed-off-by: wizAmit <amitforfriends_dns@yahoo.com>
Configuration menu - View commit details
-
Copy full SHA for 4583238 - Browse repository at this point
Copy the full SHA 4583238View commit details
Commits on Jun 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1e9e4b0 - Browse repository at this point
Copy the full SHA 1e9e4b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19f8622 - Browse repository at this point
Copy the full SHA 19f8622View commit details
Commits on Jun 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9d798b7 - Browse repository at this point
Copy the full SHA 9d798b7View commit details
Commits on Jun 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e1e95a8 - Browse repository at this point
Copy the full SHA e1e95a8View commit details
Commits on Jun 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8339211 - Browse repository at this point
Copy the full SHA 8339211View commit details -
std: Move a process test out of libstd
This commit moves a test out of libstd which is causing deadlocks on musl on CI. Looks like the recent update in musl versions brings in some internal updates to musl which makes `setgid` and `setuid` invalid to call after a `fork` in a multithreaded program. The issue seen here is that the child thread was attempting to grab a lock held by a nonexistent thread, meaning that the child process simply deadlocked causing the whole test to deadlock. This commit moves the test to its own file with no threads which should work.
Configuration menu - View commit details
-
Copy full SHA for 2a37582 - Browse repository at this point
Copy the full SHA 2a37582View commit details
Commits on Jun 28, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a0e5fcf - Browse repository at this point
Copy the full SHA a0e5fcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f1e160 - Browse repository at this point
Copy the full SHA 7f1e160View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9527565 - Browse repository at this point
Copy the full SHA 9527565View commit details
Commits on Jun 29, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 95bc720 - Browse repository at this point
Copy the full SHA 95bc720View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51793bd - Browse repository at this point
Copy the full SHA 51793bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for dfb9f5b - Browse repository at this point
Copy the full SHA dfb9f5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e83728 - Browse repository at this point
Copy the full SHA 3e83728View commit details
Commits on Jun 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 92c28bf - Browse repository at this point
Copy the full SHA 92c28bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for fc70c37 - Browse repository at this point
Copy the full SHA fc70c37View commit details -
Configuration menu - View commit details
-
Copy full SHA for de00ae7 - Browse repository at this point
Copy the full SHA de00ae7View commit details
Commits on Jul 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 353b5d4 - Browse repository at this point
Copy the full SHA 353b5d4View commit details -
Fixes rust-lang#62301, a regression in 1.36.0 which was caused by hashbrown using `NonZero<T>` where the older hashmap used `Unique<T>`.
Configuration menu - View commit details
-
Copy full SHA for 7454b29 - Browse repository at this point
Copy the full SHA 7454b29View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd702cc - Browse repository at this point
Copy the full SHA dd702ccView commit details
Commits on Jul 3, 2019
-
Fixed document bug, those replaced each other
Introduced by rust-lang#58005
Configuration menu - View commit details
-
Copy full SHA for e5ede80 - Browse repository at this point
Copy the full SHA e5ede80View commit details -
Rollup merge of rust-lang#62021 - crlf0710:msvc_link_output_improve, …
…r=alexcrichton MSVC link output improve Resolves rust-lang#35785. However i haven't come up with a idea to add test case for this :( r? @retep998
Configuration menu - View commit details
-
Copy full SHA for 7d5d591 - Browse repository at this point
Copy the full SHA 7d5d591View commit details -
Rollup merge of rust-lang#62064 - wizAmit:feature/chunks_exact_nth_ba…
…ck, r=scottmcm nth_back for chunks_exact wip nth_back for chunks_exact working nth_back for chunks exact Signed-off-by: wizAmit <amitforfriends_dns@yahoo.com> r? @timvermeulen r? @scottmcm
Configuration menu - View commit details
-
Copy full SHA for 619df2e - Browse repository at this point
Copy the full SHA 619df2eView commit details -
Rollup merge of rust-lang#62128 - ehuss:extra-filename-warning, r=mat…
…thewjasper Adjust warning of -C extra-filename with -o. If `--emit` includes multiple unnamed outputs, and `-o` was specified, and `-C extra-filename` was specified, the compiler would warn that `-C extra-filename` was ignored, but this is not true. The "adapting" of the filenames includes the extra-filename info. Since this is a little convoluted and hard to follow, here is a little chart to summarize when running with `rustc foo.rs -o xyz -C extra-filename=asdf` `--emit` | Result ---------|-------- `link` | `xyz` (extra-filename ignored) `link,dep-info` | `xyzasdf`, `xyzasdf.d` (this PR removes the incorrect warning) As to whether or not this behavior is the best choice is another question.
Configuration menu - View commit details
-
Copy full SHA for 2564009 - Browse repository at this point
Copy the full SHA 2564009View commit details -
Rollup merge of rust-lang#62161 - GuillaumeGomez:add-missing-tryfrom-…
…links, r=docs Add missing links for TryFrom docs r? @rust-lang/docs
Configuration menu - View commit details
-
Copy full SHA for d9dfed8 - Browse repository at this point
Copy the full SHA d9dfed8View commit details -
Rollup merge of rust-lang#62183 - alexcrichton:fix-tests, r=nikomatsakis
std: Move a process test out of libstd This commit moves a test out of libstd which is causing deadlocks on musl on CI. Looks like the recent update in musl versions brings in some internal updates to musl which makes `setgid` and `setuid` invalid to call after a `fork` in a multithreaded program. The issue seen here is that the child thread was attempting to grab a lock held by a nonexistent thread, meaning that the child process simply deadlocked causing the whole test to deadlock. This commit moves the test to its own file with no threads which should work.
Configuration menu - View commit details
-
Copy full SHA for 05704e8 - Browse repository at this point
Copy the full SHA 05704e8View commit details -
Rollup merge of rust-lang#62186 - GuillaumeGomez:add-missing-type-lin…
…ks-into, r=docs Add missing type urls in Into trait r? @rust-lang/docs
Configuration menu - View commit details
-
Copy full SHA for 37c58c6 - Browse repository at this point
Copy the full SHA 37c58c6View commit details -
Rollup merge of rust-lang#62196 - cramertj:vec-leak, r=centril,withou…
…tboats Add Vec::leak
Configuration menu - View commit details
-
Copy full SHA for aa7999a - Browse repository at this point
Copy the full SHA aa7999aView commit details -
Rollup merge of rust-lang#62199 - cclauss:patch-1, r=nikomatsakis
import gdb for explicit access to gdb.current_objfile()
Configuration menu - View commit details
-
Copy full SHA for b8713e5 - Browse repository at this point
Copy the full SHA b8713e5View commit details -
Rollup merge of rust-lang#62229 - christianpoveda:intptrcast-explicit…
…-casts, r=RalfJung Enable intptrcast for explicit casts I checked locally that this does not break miri on master. r? @RalfJung
Configuration menu - View commit details
-
Copy full SHA for d1db5e4 - Browse repository at this point
Copy the full SHA d1db5e4View commit details -
Rollup merge of rust-lang#62250 - czipperz:improve-box-clone-doctests…
…, r=GuillaumeGomez Improve box clone doctests to ensure the documentation is valid
Configuration menu - View commit details
-
Copy full SHA for 8ca4a6a - Browse repository at this point
Copy the full SHA 8ca4a6aView commit details -
Rollup merge of rust-lang#62255 - Centril:slice-patterns-change-issue…
…, r=varkor Switch tracking issue for `#![feature(slice_patterns)]` Switches the tracking issue for `#![feature(slice_patterns)]` to a fresh one in rust-lang#62254 due to new RFCs. Closes rust-lang#23121. r? @varkor
Configuration menu - View commit details
-
Copy full SHA for ea6c1fc - Browse repository at this point
Copy the full SHA ea6c1fcView commit details -
Rollup merge of rust-lang#62285 - Mark-Simulacrum:mailmap-mw, r=Centril
Fix michaelwoerister's mailmap Noticed while going through some changes to thanks. cc @michaelwoerister r? @Centril
Configuration menu - View commit details
-
Copy full SHA for 7a033aa - Browse repository at this point
Copy the full SHA 7a033aaView commit details -
Rollup merge of rust-lang#62304 - SimonSapin:safe, r=eddyb
HashMap is UnwindSafe Fixes rust-lang#62301, a regression in 1.36.0-pre which was caused by hashbrown using `NonZero<T>` where the older hashmap used `Unique<T>`.
Configuration menu - View commit details
-
Copy full SHA for a0fcf5e - Browse repository at this point
Copy the full SHA a0fcf5eView commit details -
Rollup merge of rust-lang#62319 - ia0:fix_kleene, r=petrochenkov
Fix mismatching Kleene operators
Configuration menu - View commit details
-
Copy full SHA for 08e8c41 - Browse repository at this point
Copy the full SHA 08e8c41View commit details -
Rollup merge of rust-lang#62327 - Flast:patch-1, r=Mark-Simulacrum
Fixed document bug, those replaced each other Originally reported by rust-lang#57686, introduced by rust-lang#58005
Configuration menu - View commit details
-
Copy full SHA for 6b43b50 - Browse repository at this point
Copy the full SHA 6b43b50View commit details