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