run_make_support/external_deps/htmldocck.rs
1use super::python::python_command;
2use crate::command::Command;
3use crate::source_root;
4
5/// `htmldocck` is a python script which is used for rustdoc test suites, it is assumed to be
6/// available at `$SOURCE_ROOT/src/etc/htmldocck.py`.
7#[track_caller]
8#[must_use]
9pub fn htmldocck() -> Command {
10 let mut python = python_command();
11 python.arg(source_root().join("src/etc/htmldocck.py"));
12 python
13}