summaryrefslogtreecommitdiffstats
path: root/tools/regression/fstest/tests/open/23.t
blob: ea6335f2b53d4c22f66e8b8392ccc2d07593e3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# $FreeBSD$

desc="open returns EINVAL when an attempt was made to open a descriptor with an illegal combination of O_RDONLY, O_WRONLY, and O_RDWR"

dir=`dirname $0`
. ${dir}/../misc.sh

echo "1..4"

n0=`namegen`

expect 0 create ${n0} 0644
expect EINVAL open ${n0} O_WRONLY,O_RDWR
expect EINVAL open ${n0} O_RDONLY,O_WRONLY,O_RDWR
expect 0 unlink ${n0}
OpenPOWER on IntegriCloud