1#!/bin/sh 2# $FreeBSD: src/tools/regression/fstest/tests/unlink/08.t,v 1.1 2007/01/17 01:42:12 pjd Exp $ 3 4desc="unlink returns EPERM if the named file is a directory" 5 6n0=`namegen` 7 8expect 0 mkdir ${n0} 0755 9expect EPERM unlink ${n0} 10expect 0 rmdir ${n0} 11