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