rust/src/test/rustdoc-ui/failed-doctest-output.rs

25 lines
637 B
Rust
Raw Normal View History

2018-07-09 14:26:22 -05:00
// Issue #51162: A failed doctest was not printing its stdout/stderr
// FIXME: if/when the output of the test harness can be tested on its own, this test should be
// adapted to use that, and that normalize line can go away
2018-07-09 14:26:22 -05:00
// compile-flags:--test
// rustc-env:RUST_BACKTRACE=0
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
// failure-status: 101
2018-07-09 14:26:22 -05:00
// doctest fails at runtime
2018-07-09 14:26:22 -05:00
/// ```
/// println!("stdout 1");
/// eprintln!("stderr 1");
/// println!("stdout 2");
/// eprintln!("stderr 2");
2018-07-09 14:26:22 -05:00
/// panic!("oh no");
/// ```
pub struct SomeStruct;
// doctest fails at compile time
/// ```
/// no
/// ```
pub struct OtherStruct;