Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c2b0cc1
Update note about unstable split-debuginfo flag.
ehuss Oct 28, 2022
86a4009
Add `walk_generic_arg`
smoelius Oct 28, 2022
5556841
fix #103783, fix ICE checking transmutability of NaughtyLenArray
chenyukang Oct 29, 2022
7b55d17
Reduce span of let else irrefutable_let_patterns warning
est31 Oct 30, 2022
953727f
better error for rustc_strict_coherence misuse
compiler-errors Oct 30, 2022
791f04e
rustdoc: add margins to all impl-item toggles, not just methods
notriddle Oct 31, 2022
c83ddae
Add better python discovery
albertlarsan68 Oct 13, 2022
fa2aa1c
interpret: move type_name implementation to an interpreter-independen…
RalfJung Oct 31, 2022
e802e99
Don't generate tuple struct fields into the search index
GuillaumeGomez Oct 31, 2022
5062a77
Add test for tuple struct field generation in search index
GuillaumeGomez Oct 31, 2022
492ee6a
rustdoc: add test case for associated type margins
notriddle Oct 31, 2022
b123a66
Enable RUSTC_BOOTSTRAP for a few steps
Mark-Simulacrum Aug 8, 2022
a6ac6b2
Rollup merge of #103007 - albertlarsan68:better-python-discovery, r=j…
Nov 1, 2022
d1ca708
Rollup merge of #103674 - ehuss:split-debuginfo-doc-unstable, r=david…
Nov 1, 2022
2125181
Rollup merge of #103692 - smoelius:walk_generic_arg, r=fee1-dead
Nov 1, 2022
2a6a8f4
Rollup merge of #103749 - est31:reduce_irrefutable_let_else_span, r=c…
Nov 1, 2022
5bf9d61
Rollup merge of #103772 - compiler-errors:better-strict-coherence-err…
Nov 1, 2022
ff89cec
Rollup merge of #103788 - chenyukang:yukang/fix-ice-103783, r=compile…
Nov 1, 2022
2c7f137
Rollup merge of #103793 - notriddle:notriddle/rustdoc-toggle-in-impl-…
Nov 1, 2022
0f40e95
Rollup merge of #103798 - RalfJung:type_name, r=oli-obk
Nov 1, 2022
fca9093
Rollup merge of #103799 - GuillaumeGomez:search-index-tuple-struct-fi…
Nov 1, 2022
669e3cd
Rollup merge of #103805 - Mark-Simulacrum:forward-port, r=jyn514
Nov 1, 2022
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
3 changes: 3 additions & 0 deletions src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -986,6 +986,7 @@ impl Step for RustdocGUI {
.arg("doc")
.arg("--target-dir")
.arg(&out_dir)
.env("RUSTC_BOOTSTRAP", "1")
.env("RUSTDOC", builder.rustdoc(self.compiler))
.env("RUSTC", builder.rustc(self.compiler))
.current_dir(path);
Expand Down Expand Up @@ -1725,6 +1726,8 @@ impl BookTest {

let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
let path = builder.src.join(&self.path);
// Books often have feature-gated example text.
rustbook_cmd.env("RUSTC_BOOTSTRAP", "1");
rustbook_cmd.env("PATH", new_path).arg("test").arg(path);
builder.add_rust_test_threads(&mut rustbook_cmd);
builder.info(&format!("Testing rustbook {}", self.path.display()));
Expand Down