1#!/bin/sh
2# $FreeBSD: head/tools/regression/pjdfstest/tests/chown/03.t 211352 2010-08-15 21:24:17Z pjd $
3
4desc="chown returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..10"
10
11nx=`dirgen_max`
12nxx="${nx}x"
13
14mkdir -p "${nx%/*}"
15
16expect 0 create ${nx} 0644
17expect 0 chown ${nx} 65534 65534
18expect 65534,65534 stat ${nx} uid,gid
19expect 0 unlink ${nx}
20expect ENAMETOOLONG chown ${nxx} 65534 65534
21
22expect 0 create ${nx} 0644
23expect 0 lchown ${nx} 65534 65534
24expect 65534,65534 stat ${nx} uid,gid
25expect 0 unlink ${nx}
26expect ENAMETOOLONG lchown ${nxx} 65534 65534
27
28rm -rf "${nx%%/*}"
29