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

21 lines
531 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
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
// failure-status: 101
// rustc-env:RUST_BACKTRACE=0
2018-07-09 14:26:22 -05:00
// doctest fails at runtime
2018-07-09 14:26:22 -05:00
/// ```
/// panic!("oh no");
/// ```
pub struct SomeStruct;
// doctest fails at compile time
/// ```
/// no
/// ```
pub struct OtherStruct;