From 661fbca6dc7be640107c64e207b00a821f0c5e40 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 10 Mar 2016 09:26:38 +0300 Subject: [PATCH] Don't let test runner script bail out before printing logs --- tests/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/common.sh b/tests/common.sh index 4e97a2b5d..8f3f083b0 100755 --- a/tests/common.sh +++ b/tests/common.sh @@ -2,6 +2,7 @@ function build_sketches() { + set +e local arduino=$1 local srcpath=$2 local build_cmd=$3 @@ -33,6 +34,7 @@ function build_sketches() fi rm build.log done + set -e } function install_libraries()