Skip to content

Commit 83b353b

Browse files
committed
Test the passing of --error-format to rustdoc
1 parent 5644bf7 commit 83b353b

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

tests/testsuite/message_format.rs

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Tests for --message-format flag.
22
3-
use cargo_test_support::{basic_manifest, project};
3+
use cargo_test_support::{basic_lib_manifest, basic_manifest, is_nightly, project};
44

55
#[cargo_test]
66
fn cannot_specify_two() {
@@ -109,3 +109,30 @@ fn cargo_renders_ansi() {
109109
.with_stdout_contains("[..]\\u001b[38;5;9merror[..]")
110110
.run();
111111
}
112+
113+
#[cargo_test]
114+
fn cargo_renders_doctests() {
115+
if !is_nightly() {
116+
// --error-format=short support added in 1.51
117+
return;
118+
}
119+
120+
let p = project()
121+
.file("Cargo.toml", &basic_lib_manifest("foo"))
122+
.file(
123+
"src/lib.rs",
124+
"\
125+
/// ```rust
126+
/// bar()
127+
/// ```
128+
pub fn bar() {}
129+
",
130+
)
131+
.build();
132+
133+
p.cargo("test --doc --message-format short")
134+
.with_status(101)
135+
.with_stdout_contains("src/lib.rs:2:1: error[E0425]:[..]")
136+
.with_stdout_contains("[..]src/lib.rs - bar (line 1)[..]")
137+
.run();
138+
}

0 commit comments

Comments
 (0)