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.
43 lines
512 B
Bash
43 lines
512 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
base=`basename $0`
|
|
|
|
echo "1..2"
|
|
|
|
name="pkill -G <gid>"
|
|
rgid=`id -gr`
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
pkill -f -G $rgid $sleep
|
|
ec=$?
|
|
case $ec in
|
|
0)
|
|
echo "ok 1 - $name"
|
|
;;
|
|
*)
|
|
echo "not ok 1 - $name"
|
|
;;
|
|
esac
|
|
rm -f $sleep
|
|
|
|
name="pkill -G <group>"
|
|
rgid=`id -grn`
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
pkill -f -G $rgid $sleep
|
|
ec=$?
|
|
case $ec in
|
|
0)
|
|
echo "ok 2 - $name"
|
|
;;
|
|
*)
|
|
echo "not ok 2 - $name"
|
|
;;
|
|
esac
|
|
rm -f $sleep
|