Replace --no-error by --keep-going

Suggest to replace by the option name that 'make' use.
no error is only a developper hope.

Signed-off-by: Gilles Espinasse <g.esp@free.fr>
Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
Gilles Espinasse 2012-10-22 09:11:07 +11:00 committed by NeilBrown
parent 4d5995c49f
commit 4d3271732e
1 changed files with 2 additions and 2 deletions

4
test
View File

@ -251,7 +251,7 @@ do_help() {
echo " --disable-multipath Disable any tests involving multipath"
echo " --logdir=<directory> Directory to save logfiles in"
echo " --save-logs Save all logs in <logdir>"
echo " --no-error Don't stop on error, ie. run all tests"
echo " --keep-going Don't stop on error, ie. run all tests"
echo " setup Setup test environment and exit"
echo " cleanup Cleanup test environment"
echo " <prefix> Run tests with <prefix>"
@ -288,7 +288,7 @@ parse_args() {
fi
fi
;;
--no-error)
--keep-going | --no-error)
exitonerror=0
;;
--disable-multipath)