From c1d9eed54b63142da3da45f5ae020c0f4c315420 Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Thu, 24 Sep 2020 06:49:45 +0200 Subject: [PATCH] tests/math.sh: do not break loop; show all errors (re: d7c90ead) --- src/cmd/ksh93/tests/math.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/cmd/ksh93/tests/math.sh b/src/cmd/ksh93/tests/math.sh index 590152403..dd819e0f8 100755 --- a/src/cmd/ksh93/tests/math.sh +++ b/src/cmd/ksh93/tests/math.sh @@ -204,7 +204,6 @@ do tf=$i pf=${ printf '%.3f' tf ;} if [[ $tf != "$pf" ]] then err_exit "typeset -F formatted data does not match its printf. typeset -F 3: $tf != $pf" - break fi done unset i tf pf; typeset -lF 3 tf @@ -213,7 +212,6 @@ do tf=$i pf=${ printf '%.3Lf' tf ;} if [[ $tf != "$pf" ]] then err_exit "typeset -lF formatted data does not match its printf. typeset -lF 3: $tf != $pf" - break fi done unset i tf pf; typeset -E 3 tf @@ -222,7 +220,6 @@ do tf=$i pf=${ printf '%.3g' tf ;} if [[ $tf != "$pf" ]] then err_exit "typeset -E formatted data does not match its printf. typeset -E 3: $tf != $pf" - break fi done unset i tf pf; typeset -lE 3 tf @@ -231,7 +228,6 @@ do tf=$i pf=${ printf '%.3Lg' tf ;} if [[ $tf != "$pf" ]] then err_exit "typeset -lE formatted data does not match its printf. typeset -lE 3: $tf != $pf" - break fi done unset i tf pf