summaryrefslogtreecommitdiffstats
path: root/tools/regression/fstest/tests/open/20.t
blob: fc926f47c9999d9abea5d05b578c40f649a6ec95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# $FreeBSD$

desc="open returns ETXTBSY when the file is a pure procedure (shared text) file that is being executed and the open() system call requests write access"

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

case "${os}" in
FreeBSD)
	echo "1..4"

	n0=`namegen`

	cp -pf `which sleep` ${n0}
	./${n0} 3 &
	expect ETXTBSY open ${n0} O_WRONLY
	expect ETXTBSY open ${n0} O_RDWR
	expect ETXTBSY open ${n0} O_RDONLY,O_TRUNC
	expect 0 unlink ${n0}
	;;
*)
	quick_exit
	;;
esac
OpenPOWER on IntegriCloud