It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
21 lines
319 B
Bash
21 lines
319 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="mkdir returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..3"
|
|
|
|
nx=`dirgen_max`
|
|
nxx="${nx}x"
|
|
|
|
mkdir -p "${nx%/*}"
|
|
|
|
expect 0 mkdir ${nx} 0755
|
|
expect 0 rmdir ${nx}
|
|
expect ENAMETOOLONG mkdir ${nxx} 0755
|
|
|
|
rm -rf "${nx%%/*}"
|