#!/bin/sh # $FreeBSD: src/tools/regression/fstest/tests/open/13.t,v 1.1 2007/01/17 01:42:10 pjd Exp $ desc="open returns EISDIR when he named file is a directory, and the arguments specify it is to be modified" n0=`namegen` expect 0 mkdir ${n0} 0755 expect 0 open ${n0} O_RDONLY expect EISDIR open ${n0} O_WRONLY expect EISDIR open ${n0} O_RDWR expect EISDIR open ${n0} O_RDONLY,O_TRUNC expect EISDIR open ${n0} O_WRONLY,O_TRUNC expect EISDIR open ${n0} O_RDWR,O_TRUNC expect 0 rmdir ${n0}