1#!/bin/sh 2# $FreeBSD: src/tools/regression/fstest/tests/open/08.t,v 1.1 2007/01/17 01:42:10 pjd Exp $ 3 4desc="open returns EACCES when O_CREAT is specified, the file does not exist, and the directory in which it is to be created does not permit writing" 5 6n0=`namegen` 7n1=`namegen` 8 9expect 0 mkdir ${n0} 0755 10cdir=`pwd` 11cd ${n0} 12expect EACCES -u 65534 -g 65534 open ${n1} O_RDONLY,O_CREAT 0644 13cd ${cdir} 14expect 0 rmdir ${n0} 15