From 5e5c2f2c481229c5d302e2d8f1a4c090de8c0a33 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Mon, 9 Sep 2019 11:35:14 -0700 Subject: [PATCH] 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 --- scripts/run_integration_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_integration_tests.sh b/scripts/run_integration_tests.sh index 64774e28c..1a777704a 100755 --- a/scripts/run_integration_tests.sh +++ b/scripts/run_integration_tests.sh @@ -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=$?