From: Miklos Vajna <vmiklos@xxxxxxxxxxxxxx> This is a simple script that aggregates key:value pairs in a file. Signed-off-by: Miklos Vajna <vmiklos@xxxxxxxxxxxxxx> --- t/aggregate-results.sh | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100755 t/aggregate-results.sh diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh new file mode 100755 index 0000000..9e4322c --- /dev/null +++ b/t/aggregate-results.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +input="test-results" + +fixed=0 +success=0 +failed=0 +broken=0 +total=0 + +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 < $input + +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 -- 1.5.5.1.214.g82ce2.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html