aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/fstest/tests/mkfifo/02.t
blob: 1f3a64e16e86a8c4dcc60622e4fd77a603fdfde2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# $FreeBSD$

desc="mkfifo returns ENAMETOOLONG if a component of a pathname exceeded 255 characters"

dir=`dirname $0`
. ${dir}/../misc.sh

echo "1..3"

expect 0 mkfifo ${name255} 0644
expect 0 unlink ${name255}
expect ENAMETOOLONG mkfifo ${name256} 0644