]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/link/10.t
Upgrade Unbound to 1.7.3. More to follow.
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / link / 10.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/10.t 211474 2010-08-18 22:06:43Z pjd $
4
5 desc="link returns EEXIST if the destination file does exist"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..23"
11
12 n0=`namegen`
13 n1=`namegen`
14
15 expect 0 create ${n0} 0644
16
17 for type in regular dir fifo block char socket symlink; do
18         create_file ${type} ${n1}
19         expect EEXIST link ${n0} ${n1}
20         if [ "${type}" = "dir" ]; then
21                 expect 0 rmdir ${n1}
22         else
23                 expect 0 unlink ${n1}
24         fi
25 done
26
27 expect 0 unlink ${n0}