From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7477 invoked by alias); 4 Nov 2008 14:37:54 -0000 Received: (qmail 7396 invoked by uid 9699); 4 Nov 2008 14:37:53 -0000 Date: Tue, 04 Nov 2008 14:37:00 -0000 Message-ID: <20081104143753.7394.qmail@sourceware.org> From: mornfall@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/test harness.sh Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2008-11/txt/msg00013.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mornfall@sourceware.org 2008-11-04 14:37:52 Modified files: test : harness.sh Log message: Also report the tests that have been skipped, at the end of harness.sh. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/harness.sh.diff?cvsroot=lvm2&r1=1.4&r2=1.5 --- LVM2/test/harness.sh 2008/10/06 16:55:29 1.4 +++ LVM2/test/harness.sh 2008/11/04 14:37:51 1.5 @@ -10,6 +10,7 @@ if test $ret = 0; then echo " passed." elif test $ret = 200; then + skipped="$skipped $t" echo " skipped." else echo " FAILED!" @@ -25,6 +26,10 @@ 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