1#!/bin/sh 2# $FreeBSD: src/tools/regression/fstest/tests/open/04.t,v 1.1 2007/01/17 01:42:10 pjd Exp $ 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 6n0=`namegen` 7n1=`namegen` 8 9expect 0 mkdir ${n0} 0755 10expect ENOENT open ${n0}/${n1}/test O_CREAT 0644 11expect ENOENT open ${n0}/${n1} O_RDONLY 12expect 0 rmdir ${n0} 13