rcutorture: Make kvm-find-errors.sh abort on bad directory
Currently, kvm-find-errors.sh gives a usage prompt when given a bad directory, but then soldiers on, giving a series of confusing error messages. This commit therefore prints an error message and exits when given a bad directory, hopefully reducing confusion. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
@@ -20,7 +20,9 @@
|
|||||||
rundir="${1}"
|
rundir="${1}"
|
||||||
if test -z "$rundir" -o ! -d "$rundir"
|
if test -z "$rundir" -o ! -d "$rundir"
|
||||||
then
|
then
|
||||||
|
echo Directory "$rundir" not found.
|
||||||
echo Usage: $0 directory
|
echo Usage: $0 directory
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
editor=${EDITOR-vi}
|
editor=${EDITOR-vi}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user