From 61072183aa43f4d2e193cdca51086e69eed043cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Thu, 20 Dec 2018 16:33:34 +0100 Subject: testrandom.sh: Fix endless loop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim Rühsen --- tests/suite/testrandom.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- cgit v1.2.1