]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/open/04.t
MFV r339792:
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / open / 04.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/open/04.t 211352 2010-08-15 21:24:17Z pjd $
4
5 desc="open returns ENOENT if a component of the path name that must exist does not exist or O_CREAT is not set and the named file does not exist"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..4"
11
12 n0=`namegen`
13 n1=`namegen`
14
15 expect 0 mkdir ${n0} 0755
16 expect ENOENT open ${n0}/${n1}/test O_CREAT 0644
17 expect ENOENT open ${n0}/${n1} O_RDONLY
18 expect 0 rmdir ${n0}