65c3cfc1aa
Interestingly, the pkill tool lives in bin, not usr.bin. Haven't bothered to check if this is because the tool moved or because the tests were originally added in the wrong place.
26 lines
274 B
Bash
26 lines
274 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
base=`basename $0`
|
|
|
|
echo "1..1"
|
|
|
|
name="pkill -P <ppid>"
|
|
ppid=$$
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
pkill -f -P $ppid $sleep
|
|
ec=$?
|
|
case $ec in
|
|
0)
|
|
echo "ok - $name"
|
|
;;
|
|
*)
|
|
echo "not ok - $name"
|
|
;;
|
|
esac
|
|
|
|
rm -f $sleep
|