From: Tim Rühsen Date: Thu, 20 Dec 2018 15:33:34 +0000 (+0100) Subject: testrandom.sh: Fix endless loop X-Git-Tag: gnutls_3_6_6~44^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61072183aa43f4d2e193cdca51086e69eed043cc;p=thirdparty%2Fgnutls.git testrandom.sh: Fix endless loop Signed-off-by: Tim Rühsen --- diff --git a/tests/suite/testrandom.sh b/tests/suite/testrandom.sh index 7e68a713a6..1283e9e765 100755 --- a/tests/suite/testrandom.sh +++ b/tests/suite/testrandom.sh @@ -38,8 +38,10 @@ counter=0 echo "Testing verification with randomly generated certificates..." while [ ${counter} -lt 400 ]; do + counter=`expr ${counter} + 1` + "${srcdir}/x509random.pl" > "${file}" - ${VALGRIND} "${CERTTOOL}" -i --inder --infile "${file}" --outfile "${file}.pem" >/dev/null 2>&1 + ${VALGRIND} "${CERTTOOL}" -i --inder --infile "${file}" --outfile "${file}.pem" >/dev/null if test $? != 0; then continue fi @@ -53,8 +55,6 @@ while [ ${counter} -lt 400 ]; do exit 1 fi rm -f "${file}.pem" "${file}-chain.pem" - - counter=`expr ${counter} + 1` done