1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/open/08.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="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" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..3" 11 12n0=`namegen` 13n1=`namegen` 14 15expect 0 mkdir ${n0} 0755 16cdir=`pwd` 17cd ${n0} 18expect EACCES -u 65534 -g 65534 open ${n1} O_RDONLY,O_CREAT 0644 19cd ${cdir} 20expect 0 rmdir ${n0} 21