xref: /freebsd/contrib/pjdfstest/tests/symlink/03.t (revision a0ee8cc6)
1#!/bin/sh
2# $FreeBSD: head/tools/regression/pjdfstest/tests/symlink/03.t 211352 2010-08-15 21:24:17Z pjd $
3
4desc="symlink returns ENAMETOOLONG if an entire length of either path name exceeded {PATH_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..6"
10
11n0=`namegen`
12nx=`dirgen_max`
13nxx="${nx}x"
14
15mkdir -p "${nx%/*}"
16expect 0 symlink ${nx} ${n0}
17expect 0 unlink ${n0}
18expect 0 symlink ${n0} ${nx}
19expect 0 unlink ${nx}
20expect ENAMETOOLONG symlink ${n0} ${nxx}
21expect ENAMETOOLONG symlink ${nxx} ${n0}
22rm -rf "${nx%%/*}"
23