turns printfs back on
[freebsd-src/fkvm-freebsd.git] / tools / regression / fstest / tests / open / 04.t
blob1ce99cbb63412fee16c0835e363bd485f456e145
1 #!/bin/sh
2 # $FreeBSD$
4 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 dir=`dirname $0`
7 . ${dir}/../misc.sh
9 echo "1..4"
11 n0=`namegen`
12 n1=`namegen`
14 expect 0 mkdir ${n0} 0755
15 expect ENOENT open ${n0}/${n1}/test O_CREAT 0644
16 expect ENOENT open ${n0}/${n1} O_RDONLY
17 expect 0 rmdir ${n0}