From 2014dca1161f80bda8e835021db375b3907f71a1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 18 Jun 2016 16:36:29 -0400 Subject: [PATCH] Fix "((: == 0 : syntax error: operand expected (error token is "== 0 ")" --- cryptest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptest.sh b/cryptest.sh index cc305ee2..a80101cd 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -3576,7 +3576,7 @@ echo "************************************************" | tee -a "$TEST_RESULTS" echo | tee -a "$TEST_RESULTS" COUNT=$($GREP -a 'Testing:' "$TEST_RESULTS" | wc -l | $AWK '{print $1}') -if (( "$ECOUNT" == "0" )); then +if (( "$COUNT" == "0" )); then echo "No configurations tested" | tee -a "$TEST_RESULTS" else echo "$COUNT configurations tested" | tee -a "$TEST_RESULTS"