From 24edb617ae66f1234f09afd9fc9d9a57217d8217 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 30 Aug 2017 12:34:36 +0200 Subject: [PATCH] tests: homogenize output of integration tests with unit tests --- tools/integration-tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/integration-tests.sh b/tools/integration-tests.sh index 41cf423db..385f0b876 100755 --- a/tools/integration-tests.sh +++ b/tools/integration-tests.sh @@ -90,20 +90,20 @@ for TEST in ${TESTS}; do case $RC in 0) - echo -e "\e[32m[Pass] \e[39m ${TESTNAME}" + echo -e "\e[32m[PASS] \e[39m ${TESTNAME}" PASSED=$((${PASSED} + 1)) ;; 99) - echo -e "\e[93m[Skip] \e[39m ${TESTNAME}" + echo -e "\e[93m[SKIP] \e[39m ${TESTNAME}" SKIPPED=$((${SKIPPED} + 1)) ;; 124) - echo -e "\e[33m[Time] \e[39m ${TESTNAME}" + echo -e "\e[33m[TIME] \e[39m ${TESTNAME}" TIMEDOUT=$((${TIMEDOUT} + 1)) FAILED=$((${FAILED} + 1)) ;; *) - echo -e "\e[31m[Fail] \e[39m ${TESTNAME} with code $RC" + echo -e "\e[31m[FAIL] \e[39m ${TESTNAME} with code $RC" FAILED=$((${FAILED} + 1)) ;; esac