container-openvpn/test-ci.sh
Kyle Manna e8eb47ef2b test: Add a simple completion message and test cnt
* Simplify the review of the test log by looking for a magic line.
2016-06-01 14:43:28 -07:00

20 lines
346 B
Bash
Executable File

#!/bin/bash
set -x
cd "$(dirname "$(readlink -f "$0")")/tests"
let cnt=0
for i in *.sh; do
cnt=$(($cnt + 1))
echo -e "\n>> Running test #$cnt \"$i\"\n"
./${i}
retval=$?
if [ $retval != 0 ]; then
echo ">> FAILED test #$cnt \"$i\", exit code $retval"
exit $retval
fi
done
echo ">> All $cnt tests PASSED"