xref: /freebsd/contrib/pjdfstest/tests/open/12.t (revision a0ee8cc6)
1#!/bin/sh
2# $FreeBSD: head/tools/regression/pjdfstest/tests/open/12.t 211352 2010-08-15 21:24:17Z pjd $
3
4desc="open 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 open ${n0}/test O_RDONLY
17expect ELOOP open ${n1}/test O_RDONLY
18expect 0 unlink ${n0}
19expect 0 unlink ${n1}
20