Current Path : /compat/linux/proc/self/root/usr/src/tools/regression/pjdfstest/tests/unlink/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/self/root/usr/src/tools/regression/pjdfstest/tests/unlink/03.t |
#!/bin/sh # $FreeBSD: release/9.1.0/tools/regression/pjdfstest/tests/unlink/03.t 211178 2010-08-11 16:33:17Z pjd $ desc="unlink returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters" dir=`dirname $0` . ${dir}/../misc.sh echo "1..4" nx=`dirgen_max` nxx="${nx}x" mkdir -p "${nx%/*}" expect 0 create ${nx} 0644 expect 0 unlink ${nx} expect ENOENT unlink ${nx} expect ENAMETOOLONG unlink ${nxx} rm -rf "${nx%%/*}"