about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--config.toml.example2
-rw-r--r--src/bootstrap/config.rs1
2 files changed, 2 insertions, 1 deletions
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;