We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5669c99 + fef9b48 commit b80e946Copy full SHA for b80e946
src/bootstrap/check.rs
@@ -458,6 +458,9 @@ impl Step for HostCompiletest {
458
});
459
} else {
460
for test in HOST_COMPILETESTS {
461
+ if test.mode == "pretty" {
462
+ continue;
463
+ }
464
run.builder.ensure(HostCompiletest {
465
compiler,
466
target: run.target,
@@ -532,7 +535,7 @@ impl Step for Compiletest {
532
535
533
536
builder.ensure(dist::DebuggerScripts {
534
537
sysroot: builder.sysroot(compiler),
- target: target
538
+ host: target
539
540
}
541
0 commit comments