1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/open/03.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="open returns ENAMETOOLONG if an entire path name exceeded ${PATH_MAX} characters" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..4" 11 12nx=`dirgen_max` 13nxx="${nx}x" 14 15mkdir -p "${nx%/*}" 16 17expect 0 open ${nx} O_CREAT 0642 18expect regular,0642 stat ${nx} type,mode 19expect 0 unlink ${nx} 20expect ENAMETOOLONG open ${nxx} O_CREAT 0642 21 22rm -rf "${nx%%/*}" 23