xref: /freebsd/contrib/pjdfstest/tests/open/23.t (revision 5b9c547c)
1#!/bin/sh
2# $FreeBSD: head/tools/regression/pjdfstest/tests/open/23.t 211352 2010-08-15 21:24:17Z pjd $
3
4desc="open may return EINVAL when an attempt was made to open a descriptor with an illegal combination of O_RDONLY, O_WRONLY, and O_RDWR"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..5"
10
11n0=`namegen`
12
13expect 0 create ${n0} 0644
14expect "0|EINVAL" open ${n0} O_RDONLY,O_RDWR
15expect "0|EINVAL" open ${n0} O_WRONLY,O_RDWR
16expect "0|EINVAL" open ${n0} O_RDONLY,O_WRONLY,O_RDWR
17expect 0 unlink ${n0}
18