diff options
Diffstat (limited to 'tests/open/08.t')
-rw-r--r-- | tests/open/08.t | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/open/08.t b/tests/open/08.t new file mode 100644 index 000000000000..f47ff8720419 --- /dev/null +++ b/tests/open/08.t @@ -0,0 +1,19 @@ +#!/bin/sh +# $FreeBSD: head/tools/regression/pjdfstest/tests/open/08.t 211352 2010-08-15 21:24:17Z pjd $ + +desc="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" + +dir=`dirname $0` +. ${dir}/../misc.sh + +echo "1..3" + +n0=`namegen` +n1=`namegen` + +expect 0 mkdir ${n0} 0755 +cdir=`pwd` +cd ${n0} +expect EACCES -u 65534 -g 65534 open ${n1} O_RDONLY,O_CREAT 0644 +cd ${cdir} +expect 0 rmdir ${n0} |