Skip to content

Commit c87ae94

Browse files
Add new htmldocck function to run-make-support
1 parent ac385a5 commit c87ae94

File tree

2 files changed

+8
-8
lines changed
  • src/tools/run-make-support/src
  • tests/run-make/rustdoc-scrape-examples-ordering

2 files changed

+8
-8
lines changed

src/tools/run-make-support/src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ pub fn python_command() -> Command {
5959
Command::new(python_path)
6060
}
6161

62+
pub fn htmldocck() -> Command {
63+
let mut python = python_command();
64+
python.arg(source_path().join("/src/etc/htmldocck.py"));
65+
python
66+
}
67+
6268
pub fn source_path() -> PathBuf {
6369
std::env::var("S").expect("S variable does not exist").into()
6470
}

tests/run-make/rustdoc-scrape-examples-ordering/rmake.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use run_make_support::{python_command, rustc, rustdoc, source_path, tmp_dir};
1+
use run_make_support::{htmldocck, rustc, rustdoc, source_path, tmp_dir};
22
use std::fs::read_dir;
33
use std::path::Path;
44

@@ -45,11 +45,5 @@ fn main() {
4545
}
4646
rustdoc.run();
4747

48-
python_command()
49-
.arg(source_path().join("/src/etc/htmldocck.py"))
50-
.arg(out_dir)
51-
.arg("src/lib.rs")
52-
.status()
53-
.unwrap()
54-
.success();
48+
htmldocck().arg(out_dir).arg("src/lib.rs").status().unwrap().success();
5549
}

0 commit comments

Comments
 (0)