diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-06-08 16:04:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-08 15:07:41 -0700 |
commit | 0a392cb8cb4df41a82ac75e1052587b9a2c6f393 (patch) | |
tree | f7a8747e9d0cb4e811d11bbef55d015c5f5fa8f9 /t | |
parent | Modify test-lib.sh to output stats to t/test-results/* (diff) | |
download | tgif-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')
-rwxr-xr-x | t/aggregate-results.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh new file mode 100755 index 0000000000..52e88e3046 --- /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 |