mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
Add regression test for #137970
This commit is contained in:
parent
a91e97c06c
commit
fff2484700
12
tests/rustdoc-ui/edition-2024-doctest-error-output.rs
Normal file
12
tests/rustdoc-ui/edition-2024-doctest-error-output.rs
Normal file
@ -0,0 +1,12 @@
|
||||
// This is a regression test for <https://github.com/rust-lang/rust/issues/137970>.
|
||||
// The output must look nice and not like a `Debug` display of a `String`.
|
||||
|
||||
//@ edition: 2024
|
||||
//@ compile-flags: --test
|
||||
//@ normalize-stdout: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
||||
//@ normalize-stdout: "finished in \d+\.\d+s" -> "finished in $$TIME"
|
||||
//@ failure-status: 101
|
||||
|
||||
//! ```rust
|
||||
//! assert_eq!(2 + 2, 5);
|
||||
//! ```
|
32
tests/rustdoc-ui/edition-2024-doctest-error-output.stdout
Normal file
32
tests/rustdoc-ui/edition-2024-doctest-error-output.stdout
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
running 1 test
|
||||
test tests/rustdoc-ui/edition-2024-doctest-error-output.rs - (line 10) ... FAILED
|
||||
|
||||
failures:
|
||||
|
||||
---- tests/rustdoc-ui/edition-2024-doctest-error-output.rs - (line 10) stdout ----
|
||||
|
||||
thread 'main' panicked at /tmp/rustdoctestSZq9aS/doctest_bundle_2024.rs:6:1:
|
||||
assertion `left == right` failed
|
||||
left: 4
|
||||
right: 5
|
||||
stack backtrace:
|
||||
0: __rustc::rust_begin_unwind
|
||||
1: core::panicking::panic_fmt
|
||||
2: core::panicking::assert_failed_inner
|
||||
3: core::panicking::assert_failed
|
||||
4: doctest_bundle_2024::__doctest_0::main
|
||||
5: doctest_bundle_2024::__doctest_0::__main_fn
|
||||
6: doctest_runner_2024::__doctest_0::TEST::{{closure}}
|
||||
7: core::ops::function::FnOnce::call_once
|
||||
8: doctest_runner_2024::main
|
||||
9: core::ops::function::FnOnce::call_once
|
||||
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
|
||||
|
||||
|
||||
|
||||
failures:
|
||||
tests/rustdoc-ui/edition-2024-doctest-error-output.rs - (line 10)
|
||||
|
||||
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME
|
||||
|
Loading…
Reference in New Issue
Block a user