1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/mkfifo/09.t 211474 2010-08-18 22:06:43Z pjd $ 4 5desc="mkfifo returns EEXIST if the named file exists" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..21" 11 12n0=`namegen` 13 14for type in regular dir fifo block char socket symlink; do 15 create_file ${type} ${n0} 16 expect EEXIST mkfifo ${n0} 0644 17 if [ "${type}" = "dir" ]; then 18 expect 0 rmdir ${n0} 19 else 20 expect 0 unlink ${n0} 21 fi 22done 23