From fa4bdb4613770a7ca85713685d3b907352f71991 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Tue, 27 Nov 2018 22:47:11 -0800 Subject: [PATCH] add --no-capture to get some logs from flaky tests --- ci/test-stable.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index fea2cb0492..f394fe882c 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -13,13 +13,13 @@ _() { } _ cargo build --all --verbose -_ cargo test --verbose --lib +_ cargo test --verbose --lib -- --nocapture # Run integration tests serially for test in tests/*.rs; do test=${test##*/} # basename x test=${test%.rs} # basename x .rs - _ cargo test --verbose --test="$test" -- --test-threads=1 + _ cargo test --verbose --test="$test" -- --test-threads=1 --nocapture done # Run native program tests @@ -28,7 +28,7 @@ for program in programs/native/*; do ( set -x cd "$program" - cargo test --verbose + cargo test --verbose -- --nocapture ) done