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