From a88a09c7162b2a5011bb20b9b0c76d080207fe12 Mon Sep 17 00:00:00 2001 From: Mark Simulacrum Date: Sun, 23 Jul 2017 07:22:12 -0600 Subject: [PATCH] Do not run pretty tests by default. --- src/bootstrap/check.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs index ee5892617529..3e0cfa33a2bc 100644 --- a/src/bootstrap/check.rs +++ b/src/bootstrap/check.rs @@ -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,