Test O_RDONLY|O_RDWR flags as potentially invalid.

This commit is contained in:
pjd 2010-08-06 19:19:14 +00:00
parent 9e5f58cf83
commit 4cf064776c

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}