1#!/bin/sh
2# $FreeBSD$
3
4desc="rmdir returns EINVAL if the last component of the path is '.' and EEXIST or ENOTEMPTY if the last component of the path is '..'"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..6"
10
11n0=`namegen`
12n1=`namegen`
13
14expect 0 mkdir ${n0} 0755
15expect 0 mkdir ${n0}/${n1} 0755
16expect EINVAL rmdir ${n0}/${n1}/.
17todo 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."
18expect "ENOTEMPTY|EEXIST" rmdir ${n0}/${n1}/..
19expect 0 rmdir ${n0}/${n1}
20expect 0 rmdir ${n0}
21