2022-04-10 19:46:30 -05:00
|
|
|
// only-windows
|
2022-04-12 08:37:00 -05:00
|
|
|
// There's a parallel generic version of this test for non-windows platforms.
|
2022-04-10 19:46:30 -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
|
|
|
|
|
|
|
|
// compile-flags:--test --test-args --test-threads=1
|
|
|
|
// rustc-env:RUST_BACKTRACE=0
|
2023-01-05 02:45:44 -06:00
|
|
|
// normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
|
2022-04-10 19:46:30 -05:00
|
|
|
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
|
|
|
|
// failure-status: 101
|
|
|
|
|
|
|
|
// doctest fails at runtime
|
|
|
|
/// ```
|
|
|
|
/// println!("stdout 1");
|
|
|
|
/// eprintln!("stderr 1");
|
|
|
|
/// println!("stdout 2");
|
|
|
|
/// eprintln!("stderr 2");
|
|
|
|
/// panic!("oh no");
|
|
|
|
/// ```
|
|
|
|
pub struct SomeStruct;
|
|
|
|
|
|
|
|
// doctest fails at compile time
|
|
|
|
/// ```
|
|
|
|
/// no
|
|
|
|
/// ```
|
|
|
|
pub struct OtherStruct;
|