]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/mkfifo/03.t
Update our copy of DTS from the ones from Linux 4.14
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / mkfifo / 03.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/mkfifo/03.t 211352 2010-08-15 21:24:17Z pjd $
4
5 desc="mkfifo returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..4"
11
12 nx=`dirgen_max`
13 nxx="${nx}x"
14
15 mkdir -p "${nx%/*}"
16
17 expect 0 mkfifo ${nx} 0644
18 expect fifo stat ${nx} type
19 expect 0 unlink ${nx}
20 expect ENAMETOOLONG mkfifo ${nxx} 0644
21
22 rm -rf "${nx%%/*}"