Rollup merge of #86297 - GuillaumeGomez:rustdoc-gui-args, r=Mark-Simulacrum
Allow to pass arguments to rustdoc-gui tool Very convenient for testing. This is another part of https://github.com/rust-lang/rust/pull/86293 cc ``@jsha`` r? ``@Mark-Simulacrum``
This commit is contained in:
commit
7dca2e276d
4 changed files with 39 additions and 10 deletions
|
|
@ -894,6 +894,9 @@ impl Step for RustdocGUI {
|
|||
}
|
||||
}
|
||||
}
|
||||
for test_arg in builder.config.cmd.test_args() {
|
||||
command.arg(test_arg);
|
||||
}
|
||||
builder.run(&mut command);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue