From 9fd026a96c6ddc8611c77924d2bcd956dc798a0e Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 5 Jun 2018 15:00:44 +0200 Subject: [PATCH] Use quiet tests by default --- config.toml.example | 2 +- src/bootstrap/config.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config.toml.example b/config.toml.example index 5054a8f44b9..a72217e0e21 100644 --- a/config.toml.example +++ b/config.toml.example @@ -303,7 +303,7 @@ # Suppresses extraneous output from tests to ensure the output of the test # harness is relatively clean. -#quiet-tests = false +#quiet-tests = true # Flag indicating whether tests are compiled with optimizations (the -O flag) or # with debuginfo (the -g flag) diff --git a/src/bootstrap/config.rs b/src/bootstrap/config.rs index 47feb8a8ab6..dee2c400a29 100644 --- a/src/bootstrap/config.rs +++ b/src/bootstrap/config.rs @@ -347,6 +347,7 @@ impl Config { config.backtrace = true; config.rust_optimize = true; config.rust_optimize_tests = true; + config.quiet_tests = true; config.submodules = true; config.fast_submodules = true; config.docs = true;