summaryrefslogtreecommitdiff
path: root/regress/sys/ffs/tests/mkdir/07.t
blob: 340b867c730b1aae30f406218db7a4cc7965e63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# $FreeBSD: src/tools/regression/fstest/tests/mkdir/07.t,v 1.1 2007/01/17 01:42:09 pjd Exp $

desc="mkdir returns ELOOP if too many symbolic links were encountered in translating the pathname"

n0=`namegen`
n1=`namegen`

expect 0 symlink ${n0} ${n1}
expect 0 symlink ${n1} ${n0}
expect ELOOP mkdir ${n0}/test 0755
expect ELOOP mkdir ${n1}/test 0755
expect 0 unlink ${n0}
expect 0 unlink ${n1}