]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/link/03.t
MFV r331400: 8484 Implement aggregate sum and use for arc counters
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / link / 03.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/link/03.t 211352 2010-08-15 21:24:17Z pjd $
4
5 desc="link returns ENAMETOOLONG if an entire length of either path name exceeded {PATH_MAX} characters"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..13"
11
12 n0=`namegen`
13 nx=`dirgen_max`
14 nxx="${nx}x"
15
16 mkdir -p "${nx%/*}"
17
18 expect 0 create ${nx} 0644
19 expect 0 link ${nx} ${n0}
20 expect 2 stat ${n0} nlink
21 expect 2 stat ${nx} nlink
22 expect 0 unlink ${nx}
23 expect 0 link ${n0} ${nx}
24 expect 2 stat ${n0} nlink
25 expect 2 stat ${nx} nlink
26 expect 0 unlink ${nx}
27 expect ENAMETOOLONG link ${n0} ${nxx}
28 expect 1 stat ${n0} nlink
29 expect 0 unlink ${n0}
30 expect ENAMETOOLONG link ${nxx} ${n0}
31
32 rm -rf "${nx%%/*}"