Test O_RDONLY|O_RDWR flags as potentially invalid.

This commit is contained in:
Pawel Jakub Dawidek 2010-08-06 19:19:14 +00:00
parent adab8b00ab
commit 482fdb1334
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210954

View File

@ -6,11 +6,12 @@ desc="open may return EINVAL when an attempt was made to open a descriptor with
dir=`dirname $0`
. ${dir}/../misc.sh
echo "1..4"
echo "1..5"
n0=`namegen`
expect 0 create ${n0} 0644
expect "0|EINVAL" open ${n0} O_RDONLY,O_RDWR
expect "0|EINVAL" open ${n0} O_WRONLY,O_RDWR
expect "0|EINVAL" open ${n0} O_RDONLY,O_WRONLY,O_RDWR
expect 0 unlink ${n0}