Deleted Added
full compact
03.t (166065) 03.t (211178)
1#!/bin/sh
1#!/bin/sh
2# $FreeBSD: head/tools/regression/fstest/tests/chmod/03.t 166065 2007-01-17 01:42:12Z pjd $
2# $FreeBSD: head/tools/regression/fstest/tests/chmod/03.t 211178 2010-08-11 16:33:17Z pjd $
3
3
4desc="chmod returns ENAMETOOLONG if an entire path name exceeded 1023 characters"
4desc="chmod returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..12"
9echo "1..10"
10
10
11expect 0 mkdir ${name255} 0755
12expect 0 mkdir ${name255}/${name255} 0755
13expect 0 mkdir ${name255}/${name255}/${name255} 0755
14expect 0 mkdir ${path1021} 0755
15expect 0 create ${path1023} 0644
16expect 0 chmod ${path1023} 0642
17expect 0 unlink ${path1023}
18expect ENAMETOOLONG chmod ${path1024} 0642
19expect 0 rmdir ${path1021}
20expect 0 rmdir ${name255}/${name255}/${name255}
21expect 0 rmdir ${name255}/${name255}
22expect 0 rmdir ${name255}
11nx=`dirgen_max`
12nxx="${nx}x"
13
14mkdir -p "${nx%/*}"
15
16expect 0 create ${nx} 0644
17expect 0 chmod ${nx} 0642
18expect 0642 stat ${nx} mode
19expect 0 unlink ${nx}
20expect ENAMETOOLONG chmod ${nxx} 0642
21
22expect 0 create ${nx} 0644
23expect 0 lchmod ${nx} 0642
24expect 0642 stat ${nx} mode
25expect 0 unlink ${nx}
26expect ENAMETOOLONG lchmod ${nxx} 0642
27
28rm -rf "${nx%%/*}"