1*ec7c50bfSpedro#!/bin/sh 2*ec7c50bfSpedro# $FreeBSD: src/tools/regression/fstest/tests/symlink/04.t,v 1.1 2007/01/17 01:42:11 pjd Exp $ 3*ec7c50bfSpedro 4*ec7c50bfSpedrodesc="symlink returns ENOENT if a component of the name2 path prefix does not exist" 5*ec7c50bfSpedro 6*ec7c50bfSpedron0=`namegen` 7*ec7c50bfSpedron1=`namegen` 8*ec7c50bfSpedro 9*ec7c50bfSpedroexpect 0 mkdir ${n0} 0755 10*ec7c50bfSpedroexpect ENOENT symlink test ${n0}/${n1}/test 11*ec7c50bfSpedroexpect 0 rmdir ${n0} 12