]> sourceware.org Git - lvm2.git/commitdiff
Also report the tests that have been skipped, at the end of harness.sh.
authorPetr Rockai <prokai@redhat.com>
Tue, 4 Nov 2008 14:37:51 +0000 (14:37 +0000)
committerPetr Rockai <prokai@redhat.com>
Tue, 4 Nov 2008 14:37:51 +0000 (14:37 +0000)
test/harness.sh

index 8913322733894334927c12f273a635b6e7e3acdc..1a0c775ad3c4886b8770905f7d0dcc13061b6297 100644 (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
This page took 0.037588 seconds and 5 git commands to generate.