xref: /freebsd/contrib/pjdfstest/tests/link/03.t (revision d6b92ffa)
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
5desc="link returns ENAMETOOLONG if an entire length of either path name exceeded {PATH_MAX} characters"
6
7dir=`dirname $0`
8. ${dir}/../misc.sh
9
10echo "1..13"
11
12n0=`namegen`
13nx=`dirgen_max`
14nxx="${nx}x"
15
16mkdir -p "${nx%/*}"
17
18expect 0 create ${nx} 0644
19expect 0 link ${nx} ${n0}
20expect 2 stat ${n0} nlink
21expect 2 stat ${nx} nlink
22expect 0 unlink ${nx}
23expect 0 link ${n0} ${nx}
24expect 2 stat ${n0} nlink
25expect 2 stat ${nx} nlink
26expect 0 unlink ${nx}
27expect ENAMETOOLONG link ${n0} ${nxx}
28expect 1 stat ${n0} nlink
29expect 0 unlink ${n0}
30expect ENAMETOOLONG link ${nxx} ${n0}
31
32rm -rf "${nx%%/*}"
33