]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/open/23.t
MFV r348578: 9962 zil_commit should omit cache thrash
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / open / 23.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/open/23.t 211352 2010-08-15 21:24:17Z pjd $
4
5 desc="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"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..5"
11
12 n0=`namegen`
13
14 expect 0 create ${n0} 0644
15 expect "0|EINVAL" open ${n0} O_RDONLY,O_RDWR
16 expect "0|EINVAL" open ${n0} O_WRONLY,O_RDWR
17 expect "0|EINVAL" open ${n0} O_RDONLY,O_WRONLY,O_RDWR
18 expect 0 unlink ${n0}