xref: /openbsd/regress/sys/ffs/tests/open/21.t (revision 3d8817e4)
1#!/bin/sh
2# $FreeBSD: src/tools/regression/fstest/tests/open/21.t,v 1.1 2007/01/17 01:42:10 pjd Exp $
3
4desc="open returns EFAULT if the path argument points outside the process's allocated address space"
5
6expect EFAULT open NULL O_RDONLY
7expect EFAULT open DEADCODE O_RDONLY
8