1#!/bin/sh 2# $FreeBSD: head/tools/regression/pjdfstest/tests/mkfifo/07.t 211352 2010-08-15 21:24:17Z pjd $ 3 4desc="mkfifo returns ELOOP if too many symbolic links were encountered in translating the pathname" 5 6dir=`dirname $0` 7. ${dir}/../misc.sh 8 9echo "1..6" 10 11n0=`namegen` 12n1=`namegen` 13 14expect 0 symlink ${n0} ${n1} 15expect 0 symlink ${n1} ${n0} 16expect ELOOP mkfifo ${n0}/test 0644 17expect ELOOP mkfifo ${n1}/test 0644 18expect 0 unlink ${n0} 19expect 0 unlink ${n1} 20