1#!/bin/sh 2# $FreeBSD: head/tools/regression/pjdfstest/tests/symlink/12.t 211352 2010-08-15 21:24:17Z pjd $ 3 4desc="symlink returns EFAULT if one of the pathnames specified is outside the process's allocated address space" 5 6dir=`dirname $0` 7. ${dir}/../misc.sh 8 9echo "1..6" 10 11n0=`namegen` 12 13expect EFAULT symlink NULL ${n0} 14expect EFAULT symlink DEADCODE ${n0} 15expect EFAULT symlink test NULL 16expect EFAULT symlink test DEADCODE 17expect EFAULT symlink NULL DEADCODE 18expect EFAULT symlink DEADCODE NULL 19