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