8000 Rollup of 9 pull requests by Dylan-DPC-zz · Pull Request #69652 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 9 pull requests #69652

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

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6f568e7
miri engine: turn some debug_assert into assert
RalfJung Feb 28, 2020
5982e9d
downgrade some assertions to debug_ again
RalfJung Feb 29, 2020
275dac7
doc(librustc_error_codes): add long error explanation for E0719
thekuom Mar 1, 2020
99a595e
Fix a leak in `DiagnosticBuilder::into_diagnostic`.
nnethercote Mar 2, 2020
4643b12
Update my mailmap entry
XAMPPRocky Mar 2, 2020
ba49ed0
clean up E0378 explanation
GuillaumeGomez Mar 2, 2020
0ec1408
Don't convert Results to Options just for matching.
matthiaskrgr Mar 1, 2020
fdc14cb
Toolstate: don't duplicate nightly tool list.
ehuss Mar 2, 2020
4281fe0
Update books
ehuss Mar 2, 2020
d8e3557
Remove `usable_size` APIs
TimDiekmann Mar 2, 2020
f53764a
Rollup merge of #69565 - RalfJung:assert, r=eddyb
Dylan-DPC Mar 3, 2020
d198d60
Rollup merge of #69609 - TimDiekmann:excess, r=Amanieu
Dylan-DPC Mar 3, 2020
1eb9857
Rollup merge of #69620 - thekuom:doc/61137-add-long-error-code-e0719,…
Dylan-DPC Mar 3, 2020
28e4c7a
Rollup merge of #69626 - ehuss:toolstate-nightly-cleanup, r=Mark-Simu…
Dylan-DPC Mar 3, 2020
6a07f16
Rollup merge of #69628 - nnethercote:fix-DiagnosticBuilder-into_diagn…
Dylan-DPC Mar 3, 2020
473c7a8
Rollup merge of #69633 - XAMPPRocky:master, r=Dylan-DPC
Dylan-DPC Mar 3, 2020
11ff6dd
Rollup merge of #69634 - GuillaumeGomez:clean-up-e0378, r=Dylan-DPC
Dylan-DPC Mar 3, 2020
917ecab
Rollup merge of #69637 - matthiaskrgr:if_let_some_result, r=ecstatic-…
Dylan-DPC Mar 3, 2020
284cd89
Rollup merge of #69641 - ehuss:update-books, r=ehuss
Dylan-DPC Mar 3, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Toolstate: don't duplicate nightly tool list.
  • Loading branch information
ehuss committed Mar 2, 2020
commit fdc14cb0b0b47d1a1e1eadf7431b5fcd11568599
2 changes: 1 addition & 1 deletion src/bootstrap/toolstate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ fn change_toolstate(
if new_state != state {
eprintln!("The state of `{}` has changed from `{}` to `{}`", tool, state, new_state);
if new_state < state {
if !["rustc-guide", "miri", "embedded-book"].contains(&tool.as_str()) {
if !NIGHTLY_TOOLS.iter().any(|(name, _path)| name == tool) {
regressed = true;
}
}
Expand Down
0