1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/12.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="rmdir returns EINVAL if the last component of the path is '.' and EEXIST or ENOTEMPTY if the last component of the path is '..'" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..6" 11 12n0=`namegen` 13n1=`namegen` 14 15expect 0 mkdir ${n0} 0755 16expect 0 mkdir ${n0}/${n1} 0755 17expect EINVAL rmdir ${n0}/${n1}/. 18todo FreeBSD "According to POSIX: EEXIST or ENOTEMPTY - The path argument names a directory that is not an empty directory, or there are hard links to the directory other than dot or a single entry in dot-dot." 19expect "ENOTEMPTY|EEXIST" rmdir ${n0}/${n1}/.. 20expect 0 rmdir ${n0}/${n1} 21expect 0 rmdir ${n0} 22