Merge pull request #3614 from gilles-peskine-arm/ssl-opt-gnutls-printf-development

Fix printf escape errors in shell scripts
This commit is contained in:
Ronald Cron
2020-11-04 17:55:42 +01:00
committed by GitHub
4 changed files with 26 additions and 25 deletions
+3 -2
View File
@@ -438,10 +438,11 @@ run_test "Decoder continues past 0xff character" \
# End of tests
echo
if [ $T_FAILED -eq 0 ]; then
printf "\nPASSED ( $T_COUNT tests )\n"
echo "PASSED ( $T_COUNT tests )"
else
printf "\nFAILED ( $T_FAILED / $T_COUNT tests )\n"
echo "FAILED ( $T_FAILED / $T_COUNT tests )"
fi
exit $T_FAILED