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