diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-18 16:52:13 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-18 16:52:13 +0000 |
commit | 4514e243d14cd40603dffb605323e3402ec21b23 (patch) | |
tree | d4b13011d6019799589fc50473b797e4aa5e0b3d /regress/sys/ffs/tests/chflags/12.t | |
parent | af2f7b02e557188dfe5a424132f1b18dcd36c6fd (diff) |
Deprecate vnds in favour of svnds.
In effect, this removes the "old" vndX nodes, and renames
the svndX nodes to vndX.
Old svndX nodes will still continue to work though, for now.
Cleanup accordingly.
ok deraadt@, todd@
comments and ok on the man page bits from jmc@
Diffstat (limited to 'regress/sys/ffs/tests/chflags/12.t')
-rw-r--r-- | regress/sys/ffs/tests/chflags/12.t | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/regress/sys/ffs/tests/chflags/12.t b/regress/sys/ffs/tests/chflags/12.t index 2316514aa5b..7cb44c1af5a 100644 --- a/regress/sys/ffs/tests/chflags/12.t +++ b/regress/sys/ffs/tests/chflags/12.t @@ -8,24 +8,24 @@ n1=`namegen` expect 0 mkdir ${n0} 0755 dd if=/dev/zero of=tmpdisk bs=1k count=1024 2>/dev/null -vnconfig svnd1 tmpdisk -newfs /dev/rsvnd1c >/dev/null -mount /dev/svnd1c ${n0} +vnconfig vnd1 tmpdisk +newfs /dev/rvnd1c >/dev/null +mount /dev/vnd1c ${n0} expect 0 create ${n0}/${n1} 0644 expect 0 chflags ${n0}/${n1} UF_IMMUTABLE expect UF_IMMUTABLE stat ${n0}/${n1} flags expect 0 chflags ${n0}/${n1} none expect none stat ${n0}/${n1} flags -mount -ur /dev/svnd1c +mount -ur /dev/vnd1c expect EROFS chflags ${n0}/${n1} UF_IMMUTABLE expect none stat ${n0}/${n1} flags -mount -uw /dev/svnd1c +mount -uw /dev/vnd1c expect 0 chflags ${n0}/${n1} UF_IMMUTABLE expect UF_IMMUTABLE stat ${n0}/${n1} flags expect 0 chflags ${n0}/${n1} none expect none stat ${n0}/${n1} flags expect 0 unlink ${n0}/${n1} -umount /dev/svnd1c -vnconfig -u svnd1 +umount /dev/vnd1c +vnconfig -u vnd1 rm tmpdisk expect 0 rmdir ${n0} |