Skip to content

Commit 9fd026a

Browse files
committed
Use quiet tests by default
1 parent f33db06 commit 9fd026a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

config.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303

304304
# Suppresses extraneous output from tests to ensure the output of the test
305305
# harness is relatively clean.
306-
#quiet-tests = false
306+
#quiet-tests = true
307307

308308
# Flag indicating whether tests are compiled with optimizations (the -O flag) or
309309
# with debuginfo (the -g flag)

src/bootstrap/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ impl Config {
347347
config.backtrace = true;
348348
config.rust_optimize = true;
349349
config.rust_optimize_tests = true;
350+
config.quiet_tests = true;
350351
config.submodules = true;
351352
config.fast_submodules = true;
352353
config.docs = true;

0 commit comments

Comments
 (0)