]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/pjdfstest/tests/rename/17.t
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / pjdfstest / tests / rename / 17.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 desc="rename returns EFAULT if one of the pathnames specified is outside the process's allocated address space"
5
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
8
9 echo "1..8"
10
11 n0=`namegen`
12
13 expect 0 create ${n0} 0644
14 expect EFAULT rename ${n0} NULL
15 expect EFAULT rename ${n0} DEADCODE
16 expect 0 unlink ${n0}
17 expect EFAULT rename NULL ${n0}
18 expect EFAULT rename DEADCODE ${n0}
19 expect EFAULT rename NULL DEADCODE
20 expect EFAULT rename DEADCODE NULL