1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/06.t 211474 2010-08-18 22:06:43Z pjd $ 4 5desc="rmdir returns EEXIST or ENOTEMPTY the named directory contains files other than '.' and '..' in it" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..23" 11 12n0=`namegen` 13n1=`namegen` 14 15expect 0 mkdir ${n0} 0755 16for type in regular dir fifo block char socket symlink; do 17 create_file ${type} ${n0}/${n1} 18 expect "EEXIST|ENOTEMPTY" rmdir ${n0} 19 if [ "${type}" = "dir" ]; then 20 expect 0 rmdir ${n0}/${n1} 21 else 22 expect 0 unlink ${n0}/${n1} 23 fi 24done 25expect 0 rmdir ${n0} 26