Skip to content

Commit b768f24

Browse files
committed
Auto merge of rust-lang#95999 - Dylan-DPC:rollup-k2r3k11, r=Dylan-DPC
Rollup of 4 pull requests Successful merges: - rust-lang#95441 (Always use system `python3` on MacOS) - rust-lang#95954 (Fix broken link in coverage tools docs) - rust-lang#95984 (Fix spelling in docs for `can_not_overflow`) - rust-lang#95989 (diagnostics: regression test for spurrious "help: store this in the heap") Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 1491e5c + 2b4c4df commit b768f24

File tree

8 files changed

+44
-12
lines changed

8 files changed

+44
-12
lines changed

library/core/src/num/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ macro_rules! impl_helper_for {
999999
}
10001000
impl_helper_for! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
10011001

1002-
/// Determins if a string of text of that length of that radix could be guaranteed to be
1002+
/// Determines if a string of text of that length of that radix could be guaranteed to be
10031003
/// stored in the given type T.
10041004
/// Note that if the radix is known to the compiler, it is just the check of digits.len that
10051005
/// is done at runtime.

src/bootstrap/lib.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,17 @@ impl Build {
11761176

11771177
/// Path to the python interpreter to use
11781178
fn python(&self) -> &Path {
1179-
self.config.python.as_ref().unwrap()
1179+
if self.config.build.ends_with("apple-darwin") {
1180+
// Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
1181+
// LLDB plugin's compiled module which only works with the system python
1182+
// (namely not Homebrew-installed python)
1183+
Path::new("/usr/bin/python3")
1184+
} else {
1185+
self.config
1186+
.python
1187+
.as_ref()
1188+
.expect("python is required for running LLDB or rustdoc tests")
1189+
}
11801190
}
11811191

11821192
/// Temporary directory that extended error information is emitted to.

src/bootstrap/sanity.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ pub fn check(build: &mut Build) {
103103
.take()
104104
.map(|p| cmd_finder.must_have(p))
105105
.or_else(|| env::var_os("BOOTSTRAP_PYTHON").map(PathBuf::from)) // set by bootstrap.py
106-
.or_else(|| Some(cmd_finder.must_have("python")));
106+
.or_else(|| cmd_finder.maybe_have("python"))
107+
.or_else(|| cmd_finder.maybe_have("python3"))
108+
.or_else(|| cmd_finder.maybe_have("python2"));
107109

108110
build.config.nodejs = build
109111
.config

src/bootstrap/test.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -1402,14 +1402,7 @@ note: if you're sure you want to do this, please open an issue as to why. In the
14021402

14031403
cmd.arg("--docck-python").arg(builder.python());
14041404

1405-
if builder.config.build.ends_with("apple-darwin") {
1406-
// Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
1407-
// LLDB plugin's compiled module which only works with the system python
1408-
// (namely not Homebrew-installed python)
1409-
cmd.arg("--lldb-python").arg("/usr/bin/python3");
1410-
} else {
1411-
cmd.arg("--lldb-python").arg(builder.python());
1412-
}
1405+
cmd.arg("--lldb-python").arg(builder.python());
14131406

14141407
if let Some(ref gdb) = builder.config.gdb {
14151408
cmd.arg("--gdb").arg(gdb);

src/doc/rustc/src/instrument-coverage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ $ llvm-cov show -Xdemangler=rustfilt target/debug/examples/formatjson5 \
145145
-name=add_quoted_string
146146
```
147147

148-
<img alt="Screenshot of sample `llvm-cov show` result, for function add_quoted_string" src="img/llvm-cov-show-01.png" class="center"/>
148+
<img alt="Screenshot of sample `llvm-cov show` result, for function add_quoted_string" src="images/llvm-cov-show-01.png" class="center"/>
149149
<br/>
150150
<br/>
151151

src/test/ui/box/issue-82446.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// https://github.com/rust-lang/rust/issues/82446
2+
// Spurious 'help: store this in the heap' regression test
3+
trait MyTrait {}
4+
5+
struct Foo {
6+
val: Box<dyn MyTrait>
7+
}
8+
9+
fn make_it(val: &Box<dyn MyTrait>) {
10+
Foo {
11+
val //~ ERROR [E0308]
12+
};
13+
}
14+
15+
fn main() {}

src/test/ui/box/issue-82446.stderr

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/issue-82446.rs:11:9
3+
|
4+
LL | val
5+
| ^^^ expected struct `Box`, found reference
6+
|
7+
= note: expected struct `Box<(dyn MyTrait + 'static)>`
8+
found reference `&Box<(dyn MyTrait + 'static)>`
9+
10+
error: aborting due to previous error
11+
12+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)