1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/symlink/02.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="symlink returns ENAMETOOLONG if a component of the name2 pathname exceeded {NAME_MAX} characters" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..7" 11 12n0=`namegen` 13nx=`namegen_max` 14nxx="${nx}x" 15 16expect 0 symlink ${nx} ${n0} 17expect 0 unlink ${n0} 18expect 0 symlink ${n0} ${nx} 19expect 0 unlink ${nx} 20 21expect ENAMETOOLONG symlink ${n0} ${nxx} 22expect 0 symlink ${nxx} ${n0} 23expect 0 unlink ${n0} 24