It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
17 lines
285 B
Bash
17 lines
285 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="mkdir returns ENAMETOOLONG if a component of a pathname exceeded {NAME_MAX} characters"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..3"
|
|
|
|
nx=`namegen_max`
|
|
nxx="${nx}x"
|
|
|
|
expect 0 mkdir ${nx} 0755
|
|
expect 0 rmdir ${nx}
|
|
expect ENAMETOOLONG mkdir ${nxx} 0755
|