turns printfs back on
[freebsd-src/fkvm-freebsd.git] / tools / regression / fstest / tests / chmod / 06.t
blobfc5f3625308d555a7bbe2fbd38fd1143dc9a9acf
1 #!/bin/sh
2 # $FreeBSD$
4 desc="chmod returns ELOOP if too many symbolic links were encountered in translating the pathname"
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
9 echo "1..6"
11 n0=`namegen`
12 n1=`namegen`
14 expect 0 symlink ${n0} ${n1}
15 expect 0 symlink ${n1} ${n0}
16 expect ELOOP chmod ${n0}/test 0644
17 expect ELOOP chmod ${n1}/test 0644
18 expect 0 unlink ${n0}
19 expect 0 unlink ${n1}