summaryrefslogtreecommitdiff
path: root/tests/rmdir/13.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rmdir/13.t')
-rw-r--r--tests/rmdir/13.t9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/rmdir/13.t b/tests/rmdir/13.t
index 3b12fc5872d19..a4cd55d65fd85 100644
--- a/tests/rmdir/13.t
+++ b/tests/rmdir/13.t
@@ -1,4 +1,5 @@
#!/bin/sh
+# vim: filetype=sh noexpandtab ts=8 sw=8
# $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/13.t 211352 2010-08-15 21:24:17Z pjd $
desc="rmdir returns EBUSY if the directory to be removed is the mount point for a mounted file system"
@@ -13,10 +14,10 @@ echo "1..3"
n0=`namegen`
expect 0 mkdir ${n0} 0755
-n=`mdconfig -a -n -t malloc -s 1m`
-newfs /dev/md${n} >/dev/null
-mount /dev/md${n} ${n0}
+n=`mdconfig -a -n -t malloc -s 1m` || exit
+newfs /dev/md${n} >/dev/null || exit
+mount /dev/md${n} ${n0} || exit
expect EBUSY rmdir ${n0}
umount /dev/md${n}
-mdconfig -d -u ${n}
+mdconfig -d -u ${n} || exit
expect 0 rmdir ${n0}