tmi: disable --verbose by default. | export V=1| to request verbosity

This commit is contained in:
Michael Vines
2019-02-07 09:41:38 -08:00
committed by Grimes
parent 1f0b3f954a
commit eb3ba5ce2d
3 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ echo --- program/native/bpf_loader bench --features=bpf_c
(
set -x
cd programs/native/bpf_loader
cargo +nightly bench --verbose --features="bpf_c" \
cargo +nightly bench ${V:+--verbose} --features="bpf_c" \
-- -Z unstable-options --format=json --nocapture | tee -a ../../../"$BENCH_FILE"
)