Less --verbose by default
This commit is contained in:
parent
1e58c585d3
commit
02c0098d57
|
@ -39,7 +39,7 @@ fi
|
||||||
|
|
||||||
BENCH_FILE=bench_output.log
|
BENCH_FILE=bench_output.log
|
||||||
BENCH_ARTIFACT=current_bench_results.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"
|
-- -Z unstable-options --format=json | tee "$BENCH_FILE"
|
||||||
|
|
||||||
# Run bpf_loader bench with bpf_c feature enabled
|
# Run bpf_loader bench with bpf_c feature enabled
|
||||||
|
|
|
@ -27,7 +27,7 @@ for program in programs/native/*; do
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
cd "$program"
|
cd "$program"
|
||||||
cargo test --verbose -- --nocapture
|
cargo test ${V:+--verbose} -- --nocapture
|
||||||
)
|
)
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue