Skip to content

Commit 03c07d8

Browse files
authored
Unrolled build for rust-lang#124963
Rollup merge of rust-lang#124963 - GuillaumeGomez:migrate-rustdoc-shared-flags, r=jieyouxu Migrate `run-make/rustdoc-shared-flags` to rmake Part of rust-lang#121876. r? ```@jieyouxu```
2 parents 78a7751 + 8167a35 commit 03c07d8

File tree

3 files changed

+14
-19
lines changed

3 files changed

+14
-19
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,6 @@ run-make/rustdoc-scrape-examples-ordering/Makefile
252252
run-make/rustdoc-scrape-examples-remap/Makefile
253253
run-make/rustdoc-scrape-examples-test/Makefile
254254
run-make/rustdoc-scrape-examples-whitespace/Makefile
255-
run-make/rustdoc-shared-flags/Makefile
256255
run-make/rustdoc-target-spec-json-path/Makefile
257256
run-make/rustdoc-themes/Makefile
258257
run-make/rustdoc-verify-output-files/Makefile

tests/run-make/rustdoc-shared-flags/Makefile

-18
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
use run_make_support::{rustc, rustdoc, Diff};
2+
3+
fn compare_outputs(args: &[&str]) {
4+
let rustc_output = String::from_utf8(rustc().args(args).command_output().stdout).unwrap();
5+
let rustdoc_output = String::from_utf8(rustdoc().args(args).command_output().stdout).unwrap();
6+
7+
Diff::new().expected_text("rustc", rustc_output).actual_text("rustdoc", rustdoc_output).run();
8+
}
9+
10+
fn main() {
11+
compare_outputs(&["-C", "help"]);
12+
compare_outputs(&["-Z", "help"]);
13+
compare_outputs(&["-C", "passes=list"]);
14+
}

0 commit comments

Comments
 (0)