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