test: fail tests with "--- FAIL:"

To differentiate from gRPC client log "TRANSIENT_FAILURE"

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyu-Ho Lee 2017-11-02 22:39:34 -07:00
parent 5ceea41af4
commit 7d99afdc7c

6
test
View File

@ -124,7 +124,7 @@ function functional_pass {
rm -rf ./agent-*
if [[ "${ETCD_TESTER_EXIT_CODE}" -ne "0" ]]; then
echo "FAIL with exit code" ${ETCD_TESTER_EXIT_CODE}
echo "--- FAIL: exit code" ${ETCD_TESTER_EXIT_CODE}
exit ${ETCD_TESTER_EXIT_CODE}
fi
}
@ -178,7 +178,7 @@ function cov_pass {
# held failures to generate the full coverage file, now fail
if [ -n "$failed" ]; then
for f in $failed; do
echo FAIL $f
echo "--- FAIL:" "$f"
done
exit 255
fi
@ -231,7 +231,7 @@ function release_pass {
set -e
case $result in
0) ;;
*) echo "FAIL with" ${result}
*) echo "--- FAIL:" ${result}
exit $result
;;
esac