We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bare_rustdoc
rustdoc-default-output
1 parent 7b85605 commit 9140e31Copy full SHA for 9140e31
tests/run-make/rustdoc-default-output/rmake.rs
@@ -3,10 +3,11 @@
3
// ensures the output of rustdoc's help menu is as expected.
4
// See https://github.com/rust-lang/rust/issues/88756
5
6
-use run_make_support::{diff, rustdoc};
+use run_make_support::{bare_rustdoc, diff};
7
8
fn main() {
9
- let out = rustdoc().run().stdout_utf8();
+ // Use `bare_rustdoc` to ensure no `--target` is set.
10
+ let out = bare_rustdoc().run().stdout_utf8();
11
diff()
12
.expected_file("output-default.stdout")
13
.actual_text("actual", out)
0 commit comments