diff options
author | Gilles Espinasse <g.esp@free.fr> | 2012-10-22 00:11:07 +0200 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2012-10-22 00:11:07 +0200 |
commit | 4d3271732ec519691dd9a85dfdd7a7c9e3f52de9 (patch) | |
tree | ba654489a75dd93f3844eea6415ec869de2d4aeb /test | |
parent | Allow escape by ctrl-c broken by --no-error change (diff) | |
download | mdadm-4d3271732ec519691dd9a85dfdd7a7c9e3f52de9.tar.xz mdadm-4d3271732ec519691dd9a85dfdd7a7c9e3f52de9.zip |
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>
Diffstat (limited to 'test')
-rwxr-xr-x | test | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |