Rollup merge of #84990 - GuillaumeGomez:sort-rustdoc-gui-tests, r=Mark-Simulacrum
Sort rustdoc-gui tests The rustdoc-gui tests were randomly run. Not really a big issue but I prefer the tests to be sorted.
This commit is contained in:
commit
87faf2e64f
1 changed files with 6 additions and 1 deletions
|
@ -831,6 +831,7 @@ impl Step for RustdocGUI {
|
|||
command.arg("src/test/rustdoc-gui/lib.rs").arg("-o").arg(&out_dir);
|
||||
builder.run(&mut command);
|
||||
|
||||
let mut tests = Vec::new();
|
||||
for file in fs::read_dir("src/test/rustdoc-gui").unwrap() {
|
||||
let file = file.unwrap();
|
||||
let file_path = file.path();
|
||||
|
@ -839,13 +840,17 @@ impl Step for RustdocGUI {
|
|||
if !file_name.to_str().unwrap().ends_with(".goml") {
|
||||
continue;
|
||||
}
|
||||
tests.push(file_path);
|
||||
}
|
||||
tests.sort_unstable();
|
||||
for test in tests {
|
||||
let mut command = Command::new(&nodejs);
|
||||
command
|
||||
.arg("src/tools/rustdoc-gui/tester.js")
|
||||
.arg("--doc-folder")
|
||||
.arg(out_dir.join("test_docs"))
|
||||
.arg("--test-file")
|
||||
.arg(file_path);
|
||||
.arg(test);
|
||||
builder.run(&mut command);
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue