1#!/bin/sh
2# $FreeBSD$
3
4desc="mknod returns EFAULT if the path argument points outside the process's allocated address space"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..2"
10
11expect EFAULT mknod NULL f 0644 0 0
12expect EFAULT mknod DEADCODE f 0644 0 0
13