1#!/bin/sh
2# $FreeBSD: src/tools/regression/fstest/tests/open/23.t,v 1.1 2007/01/17 01:42:10 pjd Exp $
3
4desc="open returns EINVAL when an attempt was made to open a descriptor with an illegal combination of O_RDONLY, O_WRONLY, and O_RDWR"
5
6n0=`namegen`
7
8expect 0 create ${n0} 0644
9expect EINVAL open ${n0} O_WRONLY,O_RDWR
10expect EINVAL open ${n0} O_RDONLY,O_WRONLY,O_RDWR
11expect 0 unlink ${n0}
12