From 02c0098d57c04e1add17912baefbea6f141d4b76 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 10 Feb 2019 10:00:21 -0800 Subject: [PATCH] Less --verbose by default --- ci/test-bench.sh | 2 +- ci/test-stable.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test-bench.sh b/ci/test-bench.sh index cf33b5bbc..157100f0a 100755 --- a/ci/test-bench.sh +++ b/ci/test-bench.sh @@ -39,7 +39,7 @@ fi BENCH_FILE=bench_output.log BENCH_ARTIFACT=current_bench_results.log -_ cargo +nightly bench --features=unstable --verbose \ +_ cargo +nightly bench --features=unstable ${V:+--verbose} \ -- -Z unstable-options --format=json | tee "$BENCH_FILE" # Run bpf_loader bench with bpf_c feature enabled diff --git a/ci/test-stable.sh b/ci/test-stable.sh index d129ff083..d97420605 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -27,7 +27,7 @@ for program in programs/native/*; do ( set -x cd "$program" - cargo test --verbose -- --nocapture + cargo test ${V:+--verbose} -- --nocapture ) done