Less --verbose by default

This commit is contained in:
Michael Vines
2019-02-10 10:00:21 -08:00
committed by Grimes
parent 1e58c585d3
commit 02c0098d57
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ for program in programs/native/*; do
(
set -x
cd "$program"
cargo test --verbose -- --nocapture
cargo test ${V:+--verbose} -- --nocapture
)
done