5a31155215
It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
29 lines
517 B
Bash
29 lines
517 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="rmdir removes directories"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..10"
|
|
|
|
n0=`namegen`
|
|
n1=`namegen`
|
|
|
|
expect 0 mkdir ${n0} 0755
|
|
expect dir lstat ${n0} type
|
|
expect 0 rmdir ${n0}
|
|
expect ENOENT lstat ${n0} type
|
|
|
|
expect 0 mkdir ${n0} 0755
|
|
expect 0 mkdir ${n0}/${n1} 0755
|
|
time=`${fstest} stat ${n0} ctime`
|
|
sleep 1
|
|
expect 0 rmdir ${n0}/${n1}
|
|
mtime=`${fstest} stat ${n0} mtime`
|
|
test_check $time -lt $mtime
|
|
ctime=`${fstest} stat ${n0} ctime`
|
|
test_check $time -lt $ctime
|
|
expect 0 rmdir ${n0}
|