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