Use quiet tests by default

This commit is contained in:
Oliver Schneider 2018-06-05 15:00:44 +02:00
parent f33db06e1d
commit 9fd026a96c
2 changed files with 2 additions and 1 deletions

View File

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

View File

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