5a31155215
It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
32 lines
616 B
Bash
32 lines
616 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="mknod returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
echo "1..12"
|
|
|
|
nx=`dirgen_max`
|
|
nxx="${nx}x"
|
|
|
|
mkdir -p "${nx%/*}"
|
|
|
|
expect 0 mknod ${nx} f 0644 0 0
|
|
expect fifo stat ${nx} type
|
|
expect 0 unlink ${nx}
|
|
expect ENAMETOOLONG mknod ${nxx} f 0644 0 0
|
|
|
|
expect 0 mknod ${nx} b 0644 1 2
|
|
expect block stat ${nx} type
|
|
expect 0 unlink ${nx}
|
|
expect ENAMETOOLONG mknod ${nxx} b 0644 1 2
|
|
|
|
expect 0 mknod ${nx} c 0644 1 2
|
|
expect char stat ${nx} type
|
|
expect 0 unlink ${nx}
|
|
expect ENAMETOOLONG mknod ${nxx} c 0644 1 2
|
|
|
|
rm -rf "${nx%%/*}"
|