summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3901a8c)
raw | patch | inline | side by side (parent: 3901a8c)
author | Junio C Hamano <gitster@pobox.com> | |
Wed, 16 Jul 2008 15:42:52 +0000 (08:42 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 16 Jul 2008 15:42:52 +0000 (08:42 -0700) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/aggregate-results.sh | patch | blob | history |
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh
index 52e88e30465b8de4f0d9bd592bdd525e0f31145a..d5bab75d7da49ebb53e368d67f6b867f5417a125 100755 (executable)
--- a/t/aggregate-results.sh
+++ b/t/aggregate-results.sh
do
while read type value
do
- case $type in
- '')
- continue ;;
+ case $type in
+ '')
+ continue ;;
fixed)
fixed=$(($fixed + $value)) ;;
success)
failed)
failed=$(($failed + $value)) ;;
broken)
- broken=$(( $broken + $value)) ;;
+ broken=$(($broken + $value)) ;;
total)
- total=$(( $total + $value)) ;;
+ total=$(($total + $value)) ;;
esac
done <"$file"
done