Fix "((: == 0 : syntax error: operand expected (error token is "== 0 ")"

pull/200/head
Jeffrey Walton 2016-06-18 16:36:29 -04:00
parent 61003d64ee
commit 2014dca116
1 changed files with 1 additions and 1 deletions

View File

@ -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"