1#!/bin/sh
2# $FreeBSD$
3
4desc="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"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..4"
10
11n0=`namegen`
12n1=`namegen`
13
14expect 0 mkdir ${n0} 0755
15expect ENOENT open ${n0}/${n1}/test O_CREAT 0644
16expect ENOENT open ${n0}/${n1} O_RDONLY
17expect 0 rmdir ${n0}
18