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