Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / tools / regression / fstest / tests / symlink / 12.t
blob8606a38acf35899dc6115dac72f8d6d8ad5d296e
1 #!/bin/sh
2 # $FreeBSD$
4 desc="symlink returns EFAULT if one of the pathnames specified is outside the process's allocated address space"
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
9 echo "1..6"
11 n0=`namegen`
13 expect EFAULT symlink NULL ${n0}
14 expect EFAULT symlink DEADCODE ${n0}
15 expect EFAULT symlink test NULL
16 expect EFAULT symlink test DEADCODE
17 expect EFAULT symlink NULL DEADCODE
18 expect EFAULT symlink DEADCODE NULL