Skip to content

Commit 3fe4ada

Browse files
committed
Auto merge of #52687 - pietroalbini:beta-backports, r=pietroalbini
[beta] Rollup backports Merged and approved: * #52677: Release notes: add some missing 1.28 libs stabilization * #52181: rustdoc: set panic output before starting compiler thread pool r? @ghost
2 parents 0aaa819 + f046883 commit 3fe4ada

File tree

7 files changed

+155
-58
lines changed

7 files changed

+155
-58
lines changed

.travis.yml

-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ matrix:
3535
NO_DEBUG_ASSERTIONS=1
3636
CI_JOB_NAME=dist-x86_64-apple-alt
3737
os: osx
38-
osx_image: xcode9.3-moar
3938
if: branch = auto
4039
4140
# macOS builders. These are placed near the beginning because they are very
@@ -56,7 +55,6 @@ matrix:
5655
NO_DEBUG_ASSERTIONS=1
5756
CI_JOB_NAME=x86_64-apple
5857
os: osx
59-
osx_image: xcode9.3-moar
6058
if: branch = auto
6159
6260
- env: >
@@ -70,7 +68,6 @@ matrix:
7068
NO_DEBUG_ASSERTIONS=1
7169
CI_JOB_NAME=i686-apple
7270
os: osx
73-
osx_image: xcode9.3-moar
7471
if: branch = auto
7572
7673
# OSX builders producing releases. These do not run the full test suite and
@@ -90,7 +87,6 @@ matrix:
9087
NO_DEBUG_ASSERTIONS=1
9188
CI_JOB_NAME=dist-i686-apple
9289
os: osx
93-
osx_image: xcode9.3-moar
9490
if: branch = auto
9591
9692
- env: >
@@ -104,7 +100,6 @@ matrix:
104100
NO_DEBUG_ASSERTIONS=1
105101
CI_JOB_NAME=dist-x86_64-apple
106102
os: osx
107-
osx_image: xcode9.3-moar
108103
if: branch = auto
109104
110105
# Linux builders, remaining docker images

RELEASES.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ Stabilized APIs
5252
---------------
5353
- [`Iterator::step_by`]
5454
- [`Path::ancestors`]
55+
- [`SystemTime::UNIX_EPOCH`]
56+
- [`alloc::GlobalAlloc`]
57+
- [`alloc::Layout`]
58+
- [`alloc::LayoutErr`]
59+
- [`alloc::System`]
60+
- [`alloc::alloc`]
61+
- [`alloc::alloc_zeroed`]
62+
- [`alloc::dealloc`]
63+
- [`alloc::realloc`]
64+
- [`alloc::handle_alloc_error`]
5565
- [`btree_map::Entry::or_default`]
5666
- [`fmt::Alignment`]
5767
- [`hash_map::Entry::or_default`]
@@ -122,6 +132,16 @@ Compatibility Notes
122132
[cargo/5584]: https://github.com/rust-lang/cargo/pull/5584/
123133
[`Iterator::step_by`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.step_by
124134
[`Path::ancestors`]: https://doc.rust-lang.org/std/path/struct.Path.html#method.ancestors
135+
[`SystemTime::UNIX_EPOCH`]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#associatedconstant.UNIX_EPOCH
136+
[`alloc::GlobalAlloc`]: https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html
137+
[`alloc::Layout`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html
138+
[`alloc::LayoutErr`]: https://doc.rust-lang.org/std/alloc/struct.LayoutErr.html
139+
[`alloc::System`]: https://doc.rust-lang.org/std/alloc/struct.System.html
140+
[`alloc::alloc`]: https://doc.rust-lang.org/std/alloc/fn.alloc.html
141+
[`alloc::alloc_zeroed`]: https://doc.rust-lang.org/std/alloc/fn.alloc_zeroed.html
142+
[`alloc::dealloc`]: https://doc.rust-lang.org/std/alloc/fn.dealloc.html
143+
[`alloc::realloc`]: https://doc.rust-lang.org/std/alloc/fn.realloc.html
144+
[`alloc::handle_alloc_error`]: https://doc.rust-lang.org/std/alloc/fn.handle_alloc_error.html
125145
[`btree_map::Entry::or_default`]: https://doc.rust-lang.org/std/collections/btree_map/enum.Entry.html#method.or_default
126146
[`fmt::Alignment`]: https://doc.rust-lang.org/std/fmt/enum.Alignment.html
127147
[`hash_map::Entry::or_default`]: https://doc.rust-lang.org/std/collections/btree_map/enum.Entry.html#method.or_default
@@ -3162,7 +3182,7 @@ Stabilized APIs
31623182
* [`UnixDatagram::shutdown`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.shutdown)
31633183
* RawFd impls for `UnixDatagram`
31643184
* `{BTree,Hash}Map::values_mut`
3165-
* [`<[_]>::binary_search_by_key`](http://doc.rust-lang.org/beta/std/primitive.slice.html#method.binary_search_by_key)
3185+
* [`<[_]>::binary_search_by_key`](http://doc.rust-lang.org/std/primitive.slice.html#method.binary_search_by_key)
31663186

31673187
Libraries
31683188
---------
@@ -4080,7 +4100,7 @@ Compatibility Notes
40804100
[1.6bh]: https://github.com/rust-lang/rust/pull/29811
40814101
[1.6c]: https://github.com/rust-lang/cargo/pull/2192
40824102
[1.6cc]: https://github.com/rust-lang/cargo/pull/2131
4083-
[1.6co]: http://doc.rust-lang.org/beta/core/index.html
4103+
[1.6co]: http://doc.rust-lang.org/core/index.html
40844104
[1.6dv]: https://github.com/rust-lang/rust/pull/30000
40854105
[1.6f]: https://github.com/rust-lang/rust/pull/29129
40864106
[1.6m]: https://github.com/rust-lang/rust/pull/29828

src/librustc_driver/lib.rs

+17-5
Original file line numberDiff line numberDiff line change
@@ -1483,10 +1483,12 @@ fn parse_crate_attrs<'a>(sess: &'a Session, input: &Input) -> PResult<'a, Vec<as
14831483
}
14841484
}
14851485

1486-
/// Runs `f` in a suitable thread for running `rustc`; returns a
1487-
/// `Result` with either the return value of `f` or -- if a panic
1488-
/// occurs -- the panic value.
1489-
pub fn in_rustc_thread<F, R>(f: F) -> Result<R, Box<Any + Send>>
1486+
/// Runs `f` in a suitable thread for running `rustc`; returns a `Result` with either the return
1487+
/// value of `f` or -- if a panic occurs -- the panic value.
1488+
///
1489+
/// This version applies the given name to the thread. This is used by rustdoc to ensure consistent
1490+
/// doctest output across platforms and executions.
1491+
pub fn in_named_rustc_thread<F, R>(name: String, f: F) -> Result<R, Box<Any + Send>>
14901492
where F: FnOnce() -> R + Send + 'static,
14911493
R: Send + 'static,
14921494
{
@@ -1530,7 +1532,7 @@ pub fn in_rustc_thread<F, R>(f: F) -> Result<R, Box<Any + Send>>
15301532

15311533
// The or condition is added from backward compatibility.
15321534
if spawn_thread || env::var_os("RUST_MIN_STACK").is_some() {
1533-
let mut cfg = thread::Builder::new().name("rustc".to_string());
1535+
let mut cfg = thread::Builder::new().name(name);
15341536

15351537
// FIXME: Hacks on hacks. If the env is trying to override the stack size
15361538
// then *don't* set it explicitly.
@@ -1546,6 +1548,16 @@ pub fn in_rustc_thread<F, R>(f: F) -> Result<R, Box<Any + Send>>
15461548
}
15471549
}
15481550

1551+
/// Runs `f` in a suitable thread for running `rustc`; returns a
1552+
/// `Result` with either the return value of `f` or -- if a panic
1553+
/// occurs -- the panic value.
1554+
pub fn in_rustc_thread<F, R>(f: F) -> Result<R, Box<dyn Any + Send>>
1555+
where F: FnOnce() -> R + Send + 'static,
1556+
R: Send + 'static,
1557+
{
1558+
in_named_rustc_thread("rustc".to_string(), f)
1559+
}
1560+
15491561
/// Get a list of extra command-line flags provided by the user, as strings.
15501562
///
15511563
/// This function is used during ICEs to show more information useful for

src/librustdoc/test.rs

+47-45
Original file line numberDiff line numberDiff line change
@@ -232,40 +232,42 @@ fn run_test(test: &str, cratename: &str, filename: &FileName, line: usize,
232232
..config::basic_options().clone()
233233
};
234234

235-
let (libdir, outdir) = driver::spawn_thread_pool(sessopts, |sessopts| {
236-
// Shuffle around a few input and output handles here. We're going to pass
237-
// an explicit handle into rustc to collect output messages, but we also
238-
// want to catch the error message that rustc prints when it fails.
239-
//
240-
// We take our thread-local stderr (likely set by the test runner) and replace
241-
// it with a sink that is also passed to rustc itself. When this function
242-
// returns the output of the sink is copied onto the output of our own thread.
243-
//
244-
// The basic idea is to not use a default Handler for rustc, and then also
245-
// not print things by default to the actual stderr.
246-
struct Sink(Arc<Mutex<Vec<u8>>>);
247-
impl Write for Sink {
248-
fn write(&mut self, data: &[u8]) -> io::Result<usize> {
249-
Write::write(&mut *self.0.lock().unwrap(), data)
250-
}
251-
fn flush(&mut self) -> io::Result<()> { Ok(()) }
235+
// Shuffle around a few input and output handles here. We're going to pass
236+
// an explicit handle into rustc to collect output messages, but we also
237+
// want to catch the error message that rustc prints when it fails.
238+
//
239+
// We take our thread-local stderr (likely set by the test runner) and replace
240+
// it with a sink that is also passed to rustc itself. When this function
241+
// returns the output of the sink is copied onto the output of our own thread.
242+
//
243+
// The basic idea is to not use a default Handler for rustc, and then also
244+
// not print things by default to the actual stderr.
245+
struct Sink(Arc<Mutex<Vec<u8>>>);
246+
impl Write for Sink {
247+
fn write(&mut self, data: &[u8]) -> io::Result<usize> {
248+
Write::write(&mut *self.0.lock().unwrap(), data)
252249
}
253-
struct Bomb(Arc<Mutex<Vec<u8>>>, Box<Write+Send>);
254-
impl Drop for Bomb {
255-
fn drop(&mut self) {
256-
let _ = self.1.write_all(&self.0.lock().unwrap());
257-
}
250+
fn flush(&mut self) -> io::Result<()> { Ok(()) }
251+
}
252+
struct Bomb(Arc<Mutex<Vec<u8>>>, Box<Write+Send>);
253+
impl Drop for Bomb {
254+
fn drop(&mut self) {
255+
let _ = self.1.write_all(&self.0.lock().unwrap());
258256
}
259-
let data = Arc::new(Mutex::new(Vec::new()));
257+
}
258+
let data = Arc::new(Mutex::new(Vec::new()));
259+
260+
let old = io::set_panic(Some(box Sink(data.clone())));
261+
let _bomb = Bomb(data.clone(), old.unwrap_or(box io::stdout()));
262+
263+
let (libdir, outdir, compile_result) = driver::spawn_thread_pool(sessopts, |sessopts| {
260264
let codemap = Lrc::new(CodeMap::new_doctest(
261265
sessopts.file_path_mapping(), filename.clone(), line as isize - line_offset as isize
262266
));
263267
let emitter = errors::emitter::EmitterWriter::new(box Sink(data.clone()),
264268
Some(codemap.clone()),
265269
false,
266270
false);
267-
let old = io::set_panic(Some(box Sink(data.clone())));
268-
let _bomb = Bomb(data.clone(), old.unwrap_or(box io::stdout()));
269271

270272
// Compile the code
271273
let diagnostic_handler = errors::Handler::with_emitter(true, false, box emitter);
@@ -310,28 +312,28 @@ fn run_test(test: &str, cratename: &str, filename: &FileName, line: usize,
310312
Err(_) | Ok(Err(CompileIncomplete::Errored(_))) => Err(())
311313
};
312314

313-
match (compile_result, compile_fail) {
314-
(Ok(()), true) => {
315-
panic!("test compiled while it wasn't supposed to")
316-
}
317-
(Ok(()), false) => {}
318-
(Err(()), true) => {
319-
if error_codes.len() > 0 {
320-
let out = String::from_utf8(data.lock().unwrap().to_vec()).unwrap();
321-
error_codes.retain(|err| !out.contains(err));
322-
}
323-
}
324-
(Err(()), false) => {
325-
panic!("couldn't compile the test")
315+
(libdir, outdir, compile_result)
316+
});
317+
318+
match (compile_result, compile_fail) {
319+
(Ok(()), true) => {
320+
panic!("test compiled while it wasn't supposed to")
321+
}
322+
(Ok(()), false) => {}
323+
(Err(()), true) => {
324+
if error_codes.len() > 0 {
325+
let out = String::from_utf8(data.lock().unwrap().to_vec()).unwrap();
326+
error_codes.retain(|err| !out.contains(err));
326327
}
327328
}
328-
329-
if error_codes.len() > 0 {
330-
panic!("Some expected error codes were not found: {:?}", error_codes);
329+
(Err(()), false) => {
330+
panic!("couldn't compile the test")
331331
}
332+
}
332333

333-
(libdir, outdir)
334-
});
334+
if error_codes.len() > 0 {
335+
panic!("Some expected error codes were not found: {:?}", error_codes);
336+
}
335337

336338
if no_run { return }
337339

@@ -546,7 +548,7 @@ impl Collector {
546548
debug!("Creating test {}: {}", name, test);
547549
self.tests.push(testing::TestDescAndFn {
548550
desc: testing::TestDesc {
549-
name: testing::DynTestName(name),
551+
name: testing::DynTestName(name.clone()),
550552
ignore: should_ignore,
551553
// compiler failures are test failures
552554
should_panic: testing::ShouldPanic::No,
@@ -556,7 +558,7 @@ impl Collector {
556558
let panic = io::set_panic(None);
557559
let print = io::set_print(None);
558560
match {
559-
rustc_driver::in_rustc_thread(move || with_globals(move || {
561+
rustc_driver::in_named_rustc_thread(name, move || with_globals(move || {
560562
io::set_panic(panic);
561563
io::set_print(print);
562564
run_test(&test,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// Issue #51162: A failed doctest was not printing its stdout/stderr
12+
// FIXME: if/when the output of the test harness can be tested on its own, this test should be
13+
// adapted to use that, and that normalize line can go away
14+
15+
// compile-flags:--test
16+
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
17+
// failure-status: 101
18+
19+
// doctest fails at runtime
20+
/// ```
21+
/// panic!("oh no");
22+
/// ```
23+
pub struct SomeStruct;
24+
25+
// doctest fails at compile time
26+
/// ```
27+
/// no
28+
/// ```
29+
pub struct OtherStruct;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
running 2 tests
3+
test $DIR/failed-doctest-output.rs - OtherStruct (line 26) ... FAILED
4+
test $DIR/failed-doctest-output.rs - SomeStruct (line 20) ... FAILED
5+
6+
failures:
7+
8+
---- $DIR/failed-doctest-output.rs - OtherStruct (line 26) stdout ----
9+
error[E0425]: cannot find value `no` in this scope
10+
--> $DIR/failed-doctest-output.rs:27:1
11+
|
12+
3 | no
13+
| ^^ not found in this scope
14+
15+
thread '$DIR/failed-doctest-output.rs - OtherStruct (line 26)' panicked at 'couldn't compile the test', librustdoc/test.rs:330:13
16+
note: Run with `RUST_BACKTRACE=1` for a backtrace.
17+
18+
---- $DIR/failed-doctest-output.rs - SomeStruct (line 20) stdout ----
19+
thread '$DIR/failed-doctest-output.rs - SomeStruct (line 20)' panicked at 'test executable failed:
20+
21+
thread 'main' panicked at 'oh no', $DIR/failed-doctest-output.rs:3:1
22+
note: Run with `RUST_BACKTRACE=1` for a backtrace.
23+
24+
', librustdoc/test.rs:365:17
25+
26+
27+
failures:
28+
$DIR/failed-doctest-output.rs - OtherStruct (line 26)
29+
$DIR/failed-doctest-output.rs - SomeStruct (line 20)
30+
31+
test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out
32+

src/tools/compiletest/src/header.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::io::BufReader;
1515
use std::path::{Path, PathBuf};
1616

1717
use common;
18-
use common::Config;
18+
use common::{Config, Mode};
1919
use util;
2020

2121
use extract_gdb_version;
@@ -396,6 +396,13 @@ impl TestProps {
396396
}
397397
});
398398

399+
if self.failure_status == -1 {
400+
self.failure_status = match config.mode {
401+
Mode::RunFail => 101,
402+
_ => 1,
403+
};
404+
}
405+
399406
for key in &["RUST_TEST_NOCAPTURE", "RUST_TEST_THREADS"] {
400407
if let Ok(val) = env::var(key) {
401408
if self.exec_env.iter().find(|&&(ref x, _)| x == key).is_none() {

0 commit comments

Comments
 (0)