Commit beabc806 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

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: default avatarPaul E. McKenney <paulmck@kernel.org>
parent c0b94ffb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -20,7 +20,9 @@
rundir="${1}"
if test -z "$rundir" -o ! -d "$rundir"
then
	echo Directory "$rundir" not found.
	echo Usage: $0 directory
	exit 1
fi
editor=${EDITOR-vi}