blob: 40c1455ad395ffd4390589de5aadbf22388d5ccc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# $FreeBSD$
desc="mkfifo returns EFAULT if the path argument points outside the process's allocated address space"
dir=`dirname $0`
. ${dir}/../misc.sh
echo "1..2"
expect EFAULT mkfifo NULL 0644
expect EFAULT mkfifo DEADCODE 0644
|