Fixed references from test/all-tests.sh and changed final message

This commit is contained in:
David Coomber 2020-09-06 18:56:13 +02:00
parent d9620c7de6
commit 4812540e61
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ passed=0
#echo PLAN ${#all_tests}
for test in $(find ./*-test.sh | sort -u) ;
do
[ "${test}" = "test/all-tests.sh" ] && continue
[ "${test}" = "dev/all-tests.sh" ] && continue
[ ! -x "${test}" ] && continue
tests=$((tests+1))
echo "TEST: ${test}"
@ -56,6 +56,6 @@ fi
echo -e "${passed} / ${tests}\\n"
[ -d "${TESTENV}" ] && echo "Logfiles from run are in ${TESTENV}"
ls -ld /tmp/bashbot.test* 2>/dev/null && echo "Don not forget to deleted bashbot test files in /tmp!!"
ls -ld /tmp/bashbot.test* 2>/dev/null && echo "Do not forget to delete bashbot test files in /tmp!!"
exit ${exitcode}