Skip to content

Commit c9b6648

Browse files
committed
rewrite rustdoc-default-output to rmake
1 parent e9f45e1 commit c9b6648

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ run-make/issue-36710/Makefile
1919
run-make/issue-47551/Makefile
2020
run-make/issue-69368/Makefile
2121
run-make/issue-84395-lto-embed-bitcode/Makefile
22-
run-make/issue-88756-default-output/Makefile
2322
run-make/jobserver-error/Makefile
2423
run-make/libs-through-symlinks/Makefile
2524
run-make/libtest-json/Makefile

tests/run-make/issue-88756-default-output/Makefile

-4
This file was deleted.

tests/run-make/issue-88756-default-output/README.md

-1
This file was deleted.

tests/run-make/issue-88756-default-output/x.rs

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Calling rustdoc with no arguments, which should bring up a help menu, used to
2+
// cause an error as rustdoc expects an input file. Fixed in #98331, this test
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::{bare_rustdoc, diff};
7+
8+
fn main() {
9+
let out = bare_rustdoc().run().stdout_utf8();
10+
diff()
11+
.expected_file("output-default.stdout")
12+
.actual_text("actual", out)
13+
// replace the channel type in the URL with $CHANNEL
14+
.normalize(r"/nightly/|beta/|stable/|1\.[0-9]+\.[0-9]+/", "/$$CHANNEL/")
15+
.run();
16+
}

0 commit comments

Comments
 (0)