Do not run pretty tests by default.

This commit is contained in:
Mark Simulacrum 2017-07-23 07:22:12 -06:00
parent 6270257f4e
commit a88a09c716

View File

@ -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,