X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=inline;f=t%2Faggregate-results.sh;h=d5bab75d7da49ebb53e368d67f6b867f5417a125;hb=8222153d8449cb1d0f9c4b06b7f7f5b0c5128205;hp=52e88e30465b8de4f0d9bd592bdd525e0f31145a;hpb=447d0cca45920bbe409361bb532444f810c75546;p=git.git diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh index 52e88e304..d5bab75d7 100755 --- a/t/aggregate-results.sh +++ b/t/aggregate-results.sh @@ -10,9 +10,9 @@ for file do while read type value do - case $type in - '') - continue ;; + case $type in + '') + continue ;; fixed) fixed=$(($fixed + $value)) ;; success) @@ -20,9 +20,9 @@ do failed) failed=$(($failed + $value)) ;; broken) - broken=$(( $broken + $value)) ;; + broken=$(($broken + $value)) ;; total) - total=$(( $total + $value)) ;; + total=$(($total + $value)) ;; esac done <"$file" done