Add --no-error argument to 'test'

This allows the test suite to run to completion even if one test
fails.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
Jes Sorensen 2012-05-28 10:51:43 +10:00 committed by NeilBrown
parent 6038155520
commit b8e91a32cd
1 changed files with 6 additions and 2 deletions

8
test
View File

@ -19,6 +19,7 @@ fi
testdir="tests"
logdir="$testdir/logs"
logsave=0
exitonerror=1
# Check whether to run multipath tests
modprobe multipath 2> /dev/null
@ -230,7 +231,7 @@ do_test() {
if [ "$savelogs" == "1" ]; then
cp $targetdir/log $logdir/$_basename.log
fi
if [ "$_fail" == "1" ]; then
if [ "$_fail" == "1" -a "$exitonerror" == "1" ]; then
exit 1
fi
fi
@ -238,7 +239,7 @@ do_test() {
do_help() {
echo "Usage: "
echo " $0 [--tests=<test1,test2,..>] [--disable-multipath] [--logdir] [--save-logs] [setup] [prefix]"
echo " $0 [--tests=<test1,test2,..>] [--disable-multipath] [--logdir] [--save-logs] [--no-error] [setup] [prefix]"
}
parse_args() {
@ -267,6 +268,9 @@ parse_args() {
fi
fi
;;
--no-error)
exit_on_error=0
;;
--disable-multipath)
unset MULTIPATH
;;