1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-04-01 18:50:41 +03:00

Also report the tests that have been skipped, at the end of harness.sh.

This commit is contained in:
Petr Rockai 2008-11-04 14:37:51 +00:00
parent 6339e2588b
commit 7c90b57e87

View File

@ -10,6 +10,7 @@ for t in $tests; do
if test $ret = 0; then
echo " passed."
elif test $ret = 200; then
skipped="$skipped $t"
echo " skipped."
else
echo " FAILED!"
@ -25,6 +26,10 @@ for t in $tests; do
done
if test -n "$failed"; then
echo "Tests skipped:"
for t in $skipped; do
printf "\t%s\n" $t
done
echo "TESTS FAILED:"
for t in $failed; do
printf "\t%s\n" $t