Skip to content

Commit b80e946

Browse files
committed
Auto merge of #43430 - Mark-Simulacrum:rustbuild-fixes, r=alexcrichton
Rustbuild regression fixes I believe this will fix #43427. This PR also avoids running pretty tests by-default. r? @alexcrichton
2 parents 5669c99 + fef9b48 commit b80e946

File tree

3 files changed

+85
-88
lines changed

3 files changed

+85
-88
lines changed

src/bootstrap/check.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,9 @@ impl Step for HostCompiletest {
458458
});
459459
} else {
460460
for test in HOST_COMPILETESTS {
461+
if test.mode == "pretty" {
462+
continue;
463+
}
461464
run.builder.ensure(HostCompiletest {
462465
compiler,
463466
target: run.target,
@@ -532,7 +535,7 @@ impl Step for Compiletest {
532535

533536
builder.ensure(dist::DebuggerScripts {
534537
sysroot: builder.sysroot(compiler),
535-
target: target
538+
host: target
536539
});
537540
}
538541

0 commit comments

Comments
 (0)