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:
parent
6339e2588b
commit
7c90b57e87
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user