aboutsummaryrefslogtreecommitdiff
path: root/t/aggregate-results.sh
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2008-06-08 16:04:34 +0200
committerJunio C Hamano <gitster@pobox.com>2008-06-08 15:07:41 -0700
commit0a392cb8cb4df41a82ac75e1052587b9a2c6f393 (patch)
treef7a8747e9d0cb4e811d11bbef55d015c5f5fa8f9 /t/aggregate-results.sh
parent2d84e9fb6d281ed039bd67aafcdd8516a2b5226e (diff)
downloadgit-0a392cb8cb4df41a82ac75e1052587b9a2c6f393.tar.gz
git-0a392cb8cb4df41a82ac75e1052587b9a2c6f393.tar.xz
A simple script to parse the results from the testcases
This is a simple script that aggregates key:value pairs in a file. Signed-off-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/aggregate-results.sh')
-rwxr-xr-xt/aggregate-results.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh
new file mode 100755
index 000000000..52e88e304
--- /dev/null
+++ b/t/aggregate-results.sh
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+fixed=0
+success=0
+failed=0
+broken=0
+total=0
+
+for file
+do
+ while read type value
+ do
+ case $type in
+ '')
+ continue ;;
+ fixed)
+ fixed=$(($fixed + $value)) ;;
+ success)
+ success=$(($success + $value)) ;;
+ failed)
+ failed=$(($failed + $value)) ;;
+ broken)
+ broken=$(( $broken + $value)) ;;
+ total)
+ total=$(( $total + $value)) ;;
+ esac
+ done <"$file"
+done
+
+printf "%-8s%d\n" fixed $fixed
+printf "%-8s%d\n" success $success
+printf "%-8s%d\n" failed $failed
+printf "%-8s%d\n" broken $broken
+printf "%-8s%d\n" total $total