Skip to content

Commit

Permalink
Auto merge of #43430 - Mark-Simulacrum:rustbuild-fixes, r=alexcrichton
Browse files Browse the repository at this point in the history
Rustbuild regression fixes

I believe this will fix #43427.

This PR also avoids running pretty tests by-default.

r? @alexcrichton
  • Loading branch information
bors committed Jul 24, 2017
2 parents 5669c99 + fef9b48 commit b80e946
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 88 deletions.
5 changes: 4 additions & 1 deletion src/bootstrap/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ impl Step for HostCompiletest {
});
} else {
for test in HOST_COMPILETESTS {
if test.mode == "pretty" {
continue;
}
run.builder.ensure(HostCompiletest {
compiler,
target: run.target,
Expand Down Expand Up @@ -532,7 +535,7 @@ impl Step for Compiletest {

builder.ensure(dist::DebuggerScripts {
sysroot: builder.sysroot(compiler),
target: target
host: target
});
}

Expand Down
Loading

0 comments on commit b80e946

Please sign in to comment.