Deleted Added
full compact
02.t (166065) 02.t (211178)
1#!/bin/sh
1#!/bin/sh
2# $FreeBSD: head/tools/regression/fstest/tests/chmod/02.t 166065 2007-01-17 01:42:12Z pjd $
2# $FreeBSD: head/tools/regression/fstest/tests/chmod/02.t 211178 2010-08-11 16:33:17Z pjd $
3
3
4desc="chmod returns ENAMETOOLONG if a component of a pathname exceeded 255 characters"
4desc="chmod returns ENAMETOOLONG if a component of a pathname exceeded {NAME_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..5"
9echo "1..10"
10
10
11expect 0 create ${name255} 0644
12expect 0 chmod ${name255} 0620
13expect 0620 stat ${name255} mode
14expect 0 unlink ${name255}
15expect ENAMETOOLONG chmod ${name256} 0620
11nx=`namegen_max`
12nxx="${nx}x"
13
14expect 0 create ${nx} 0644
15expect 0 chmod ${nx} 0620
16expect 0620 stat ${nx} mode
17expect 0 unlink ${nx}
18expect ENAMETOOLONG chmod ${nxx} 0620
19
20expect 0 create ${nx} 0644
21expect 0 lchmod ${nx} 0620
22expect 0620 stat ${nx} mode
23expect 0 unlink ${nx}
24expect ENAMETOOLONG lchmod ${nxx} 0620