1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/01.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="rmdir returns ENOTDIR if a component of the path is not a directory" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..14" 11 12n0=`namegen` 13n1=`namegen` 14 15expect 0 mkdir ${n0} 0755 16expect 0 create ${n0}/${n1} 0644 17expect ENOTDIR rmdir ${n0}/${n1}/test 18expect 0 unlink ${n0}/${n1} 19expect 0 rmdir ${n0} 20 21expect 0 create ${n0} 0644 22expect ENOTDIR rmdir ${n0} 23expect 0 unlink ${n0} 24 25expect 0 symlink ${n1} ${n0} 26expect ENOTDIR rmdir ${n0} 27expect 0 unlink ${n0} 28 29expect 0 mkfifo ${n0} 0644 30expect ENOTDIR rmdir ${n0} 31expect 0 unlink ${n0} 32