ci: Allow tests to print some useful information with println

In order to make the tests more verbose and help identify more quickly
where a test might be failing, this patch adds the ability for the unit
tests to print useful information with println.

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf 2019-09-09 11:35:14 -07:00 committed by Rob Bradford
parent a9b2207bcf
commit 5e5c2f2c48

View File

@ -135,7 +135,7 @@ sudo setcap cap_net_admin+ep /usr/bin/qemu-system-x86_64
sudo adduser $USER kvm
newgrp kvm << EOF
export RUST_BACKTRACE=1
cargo test --features "integration_tests"
cargo test --features "integration_tests" -- --nocapture
EOF
RES=$?