02.t revision 166065
1#!/bin/sh
2# $FreeBSD: head/tools/regression/fstest/tests/chown/02.t 166065 2007-01-17 01:42:12Z pjd $
3
4desc="chown returns ENAMETOOLONG if a component of a pathname exceeded 255 characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..5"
10
11expect 0 create ${name255} 0644
12expect 0 chown ${name255} 65534 65534
13expect 65534,65534 stat ${name255} uid,gid
14expect 0 unlink ${name255}
15expect ENAMETOOLONG chown ${name256} 65533 65533
16