1#!/bin/sh 2# $FreeBSD: head/tools/regression/pjdfstest/tests/mknod/07.t 211352 2010-08-15 21:24:17Z pjd $ 3 4desc="mknod 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 mknod ${n0}/test f 0644 0 0 17expect ELOOP mknod ${n1}/test f 0644 0 0 18expect 0 unlink ${n0} 19expect 0 unlink ${n1} 20