5a31155215
It is released from time to time and used outside FreeBSD, so it is good to have a name one can google.
19 lines
326 B
Bash
19 lines
326 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
desc="truncate returns ETXTBSY the file is a pure procedure (shared text) file that is being executed"
|
|
|
|
dir=`dirname $0`
|
|
. ${dir}/../misc.sh
|
|
|
|
[ "${os}" = "FreeBSD" ] || quick_exit
|
|
|
|
echo "1..2"
|
|
|
|
n0=`namegen`
|
|
|
|
cp -pf `which sleep` ${n0}
|
|
./${n0} 3 &
|
|
expect ETXTBSY truncate ${n0} 123
|
|
expect 0 unlink ${n0}
|