From cdbfea5c6cce88680239ddb796f1c8d2621e76d3 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 6 May 2021 16:51:04 +0200 Subject: [PATCH] Sort rustdoc-gui tests --- src/bootstrap/test.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index de9c1882c7d48..9243a0cdd9df1 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -830,6 +830,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(); @@ -838,13 +839,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 {