1#!/bin/sh 2# $FreeBSD: head/tools/regression/pjdfstest/tests/open/22.t 211352 2010-08-15 21:24:17Z pjd $ 3 4desc="open returns EEXIST when O_CREAT and O_EXCL were specified and the file exists" 5 6dir=`dirname $0` 7. ${dir}/../misc.sh 8 9echo "1..21" 10 11n0=`namegen` 12 13for type in regular dir fifo block char socket symlink; do 14 create_file ${type} ${n0} 15 expect EEXIST open ${n0} O_CREAT,O_EXCL 0644 16 if [ "${type}" = "dir" ]; then 17 expect 0 rmdir ${n0} 18 else 19 expect 0 unlink ${n0} 20 fi 21done 22