Commit 4988486c authored by Paul E. McKenney's avatar Paul E. McKenney

torture: Make torture.sh accept --do-all and --donone

Currently, torture.sh accepts --doall on the one hand and --do-none
on the other, which is a bit inconsistent.  This commit therefore adds
--do-all and --donone so that a fully consistent test may be used.
Signed-off-by: default avatarPaul E. McKenney <paulmck@kernel.org>
parent ef4dac7d
...@@ -111,7 +111,7 @@ do ...@@ -111,7 +111,7 @@ do
configs_scftorture="$configs_scftorture $2" configs_scftorture="$configs_scftorture $2"
shift shift
;; ;;
--doall) --do-all|--doall)
do_allmodconfig=yes do_allmodconfig=yes
do_rcutorture=yes do_rcutorture=yes
do_locktorture=yes do_locktorture=yes
...@@ -141,7 +141,7 @@ do ...@@ -141,7 +141,7 @@ do
--do-locktorture|--do-no-locktorture) --do-locktorture|--do-no-locktorture)
do_locktorture=`doyesno "$1" --do-locktorture` do_locktorture=`doyesno "$1" --do-locktorture`
;; ;;
--do-none) --do-none|--donone)
do_allmodconfig=no do_allmodconfig=no
do_rcutorture=no do_rcutorture=no
do_locktorture=no do_locktorture=no
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment