We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18bb86e commit b436dcaCopy full SHA for b436dca
src/bootstrap/test.rs
@@ -1921,6 +1921,9 @@ impl Step for Bootstrap {
1921
cmd.arg("--no-fail-fast");
1922
}
1923
cmd.arg("--").args(&builder.config.cmd.test_args());
1924
+ // rustbuild tests are racy on directory creation so just run them one at a time.
1925
+ // Since there's not many this shouldn't be a problem.
1926
+ cmd.arg("--test-threads=1");
1927
try_run(builder, &mut cmd);
1928
1929
0 commit comments