|cargo test --all|

This commit is contained in:
Michael Vines 2018-12-14 15:28:45 -08:00
parent 8ba1aed5a3
commit f0d1ed0cc4
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ _() {
} }
# Uncomment this to run nightly test suit # Uncomment this to run nightly test suit
# _ cargo test --verbose --features=unstable -- --test-threads=1 # _ cargo test --all --verbose --features=unstable -- --test-threads=1
cargo_install_unless() { cargo_install_unless() {
declare crate=$1 declare crate=$1

View File

@ -24,7 +24,7 @@ source ./target/perf-libs/env.sh
FEATURES=bpf_c,cuda,erasure,chacha FEATURES=bpf_c,cuda,erasure,chacha
_ cargo build --all --verbose --features="$FEATURES" _ cargo build --all --verbose --features="$FEATURES"
_ cargo test --verbose --features="$FEATURES" --lib -- --nocapture --test-threads=1 _ cargo test --all --verbose --features="$FEATURES" --lib -- --nocapture --test-threads=1
# Run integration tests serially # Run integration tests serially
for test in tests/*.rs; do for test in tests/*.rs; do

View File

@ -24,7 +24,7 @@ if [[ $(ulimit -n) -lt $maxOpenFds ]]; then
fi fi
_ cargo build --all --verbose _ cargo build --all --verbose
_ cargo test --verbose --lib -- --nocapture --test-threads=1 _ cargo test --all --verbose --lib -- --nocapture --test-threads=1
# Run integration tests serially # Run integration tests serially
for test in tests/*.rs; do for test in tests/*.rs; do