mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
tests: homogenize output of integration tests with unit tests
This commit is contained in:
parent
cc3292974f
commit
24edb617ae
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue