1#!/bin/sh
2# $FreeBSD$
3
4desc="unlink returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..4"
10
11nx=`dirgen_max`
12nxx="${nx}x"
13
14mkdir -p "${nx%/*}"
15
16expect 0 create ${nx} 0644
17expect 0 unlink ${nx}
18expect ENOENT unlink ${nx}
19expect ENAMETOOLONG unlink ${nxx}
20
21rm -rf "${nx%%/*}"
22