Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  tests: print failed test numbers at the end of the test run
  • Loading branch information
Junio C Hamano committed Jul 24, 2011
2 parents 5c2f845 + 2579e1d commit 4db0d0d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion t/aggregate-results.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/sh

failed_tests=
fixed=0
success=0
failed=0
Expand All @@ -18,7 +19,13 @@ do
success)
success=$(($success + $value)) ;;
failed)
failed=$(($failed + $value)) ;;
failed=$(($failed + $value))
if test $value != 0
then
testnum=$(expr "$file" : 'test-results/\(t[0-9]*\)-')
failed_tests="$failed_tests $testnum"
fi
;;
broken)
broken=$(($broken + $value)) ;;
total)
Expand All @@ -27,6 +34,11 @@ do
done <"$file"
done

if test -n "$failed_tests"
then
printf "\nfailed test(s):$failed_tests\n\n"
fi

printf "%-8s%d\n" fixed $fixed
printf "%-8s%d\n" success $success
printf "%-8s%d\n" failed $failed
Expand Down

0 comments on commit 4db0d0d

Please sign in to comment.