xref: /freebsd/contrib/pjdfstest/tests/mkfifo/12.t (revision e64fe029e9d3ce476e77a478318e0c3cd201ff08)
1#!/bin/sh
2# vim: filetype=sh noexpandtab ts=8 sw=8
3# $FreeBSD: head/tools/regression/pjdfstest/tests/mkfifo/12.t 211352 2010-08-15 21:24:17Z pjd $
4
5desc="mkfifo returns EFAULT if the path argument points outside the process's allocated address space"
6
7dir=`dirname $0`
8. ${dir}/../misc.sh
9
10echo "1..2"
11
12expect EFAULT mkfifo NULL 0644
13expect EFAULT mkfifo DEADCODE 0644
14