From 9ec26c035bec8b96384586bf620be606d0585af5 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 5 Oct 2018 20:13:17 +0200 Subject: Improve exit output message Display the tests results depending on the chosen format or inform the user of the error and displaying in that case the binder(s) log output. Change-Id: Id1d91d55b182969e8a5a8d7aed319d16aec0db19 Signed-off-by: Romain Forlot --- afm-test.native.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'afm-test.native.sh') diff --git a/afm-test.native.sh b/afm-test.native.sh index 367319e..295102c 100644 --- a/afm-test.native.sh +++ b/afm-test.native.sh @@ -20,10 +20,20 @@ trap "cleanNexit 1" SIGHUP SIGINT SIGABRT SIGTERM cleanNexit() { - rm -f $SOCKETSERVICE 2> /dev/null - trap '' EXIT SIGHUP SIGINT SIGABRT SIGTERM - [ $1 -ne 0 ] && echo "Error: Test launch failed. Code: $1" && cat ${LOGFILETEST} ${LOGFILESERVICE} - exit $1 + rm -f $SOCKETSERVICE 2> /dev/null + trap '' EXIT SIGHUP SIGINT SIGABRT SIGTERM + if [ $1 -ne 0 ] + then + [ -f ${LOGFILESERVICE} ] && cat ${LOGFILESERVICE} + [ -f ${LOGFILETEST} ] && cat ${LOGFILETEST} + echo "Error: Test launch failed. Code: $1" + else + find ${TESTPACKAGEDIR} -maxdepth 1 -name '*.tap' -exec cat {} \; + find ${TESTPACKAGEDIR} -maxdepth 1 -name '*.txt' -exec cat {} \; + find ${TESTPACKAGEDIR} -maxdepth 1 -name '*.xml' -a ! -name 'config.xml' -exec cat {} \; + echo "Tests correctly launched." + fi + exit $1 } function usage() { -- cgit 1.2.3-korg