xref: /freebsd/contrib/pjdfstest/tests/rename/17.t (revision 3416500a)
140a8ac8fSEnji Cooper#!/bin/sh
2*3416500aSEnji Cooper# vim: filetype=sh noexpandtab ts=8 sw=8
340a8ac8fSEnji Cooper# $FreeBSD: head/tools/regression/pjdfstest/tests/rename/17.t 211352 2010-08-15 21:24:17Z pjd $
440a8ac8fSEnji Cooper
540a8ac8fSEnji Cooperdesc="rename returns EFAULT if one of the pathnames specified is outside the process's allocated address space"
640a8ac8fSEnji Cooper
740a8ac8fSEnji Cooperdir=`dirname $0`
840a8ac8fSEnji Cooper. ${dir}/../misc.sh
940a8ac8fSEnji Cooper
1040a8ac8fSEnji Cooperecho "1..8"
1140a8ac8fSEnji Cooper
1240a8ac8fSEnji Coopern0=`namegen`
1340a8ac8fSEnji Cooper
1440a8ac8fSEnji Cooperexpect 0 create ${n0} 0644
1540a8ac8fSEnji Cooperexpect EFAULT rename ${n0} NULL
1640a8ac8fSEnji Cooperexpect EFAULT rename ${n0} DEADCODE
1740a8ac8fSEnji Cooperexpect 0 unlink ${n0}
1840a8ac8fSEnji Cooperexpect EFAULT rename NULL ${n0}
1940a8ac8fSEnji Cooperexpect EFAULT rename DEADCODE ${n0}
2040a8ac8fSEnji Cooperexpect EFAULT rename NULL DEADCODE
2140a8ac8fSEnji Cooperexpect EFAULT rename DEADCODE NULL
22