gitk: Second try to work around the command line limit on Windows
[git/dscho.git] / t / aggregate-results.sh
blobd5bab75d7da49ebb53e368d67f6b867f5417a125
1 #!/bin/sh
3 fixed=0
4 success=0
5 failed=0
6 broken=0
7 total=0
9 for file
11 while read type value
13 case $type in
14 '')
15 continue ;;
16 fixed)
17 fixed=$(($fixed + $value)) ;;
18 success)
19 success=$(($success + $value)) ;;
20 failed)
21 failed=$(($failed + $value)) ;;
22 broken)
23 broken=$(($broken + $value)) ;;
24 total)
25 total=$(($total + $value)) ;;
26 esac
27 done <"$file"
28 done
30 printf "%-8s%d\n" fixed $fixed
31 printf "%-8s%d\n" success $success
32 printf "%-8s%d\n" failed $failed
33 printf "%-8s%d\n" broken $broken
34 printf "%-8s%d\n" total $total