1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/open/17.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="open returns ENXIO when O_NONBLOCK is set, the named file is a fifo, O_WRONLY is set, and no process has the file open for reading" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..3" 11 12n0=`namegen` 13 14expect 0 mkfifo ${n0} 0644 15expect ENXIO open ${n0} O_WRONLY,O_NONBLOCK 16expect 0 unlink ${n0} 17