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.
38 lines
567 B
Bash
38 lines
567 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
base=`basename $0`
|
|
|
|
echo "1..2"
|
|
|
|
name="pgrep -g <pgrp>"
|
|
pgrp=`ps -o tpgid -p $$ | tail -1`
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
chpid=$!
|
|
pid=`pgrep -f -g $pgrp $sleep`
|
|
if [ "$pid" = "$chpid" ]; then
|
|
echo "ok 1 - $name"
|
|
else
|
|
echo "not ok 1 - $name"
|
|
fi
|
|
kill $chpid
|
|
rm -f $sleep
|
|
|
|
name="pgrep -g 0"
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
chpid=$!
|
|
pid=`pgrep -f -g 0 $sleep`
|
|
if [ "$pid" = "$chpid" ]; then
|
|
echo "ok 2 - $name"
|
|
else
|
|
echo "not ok 2 - $name"
|
|
fi
|
|
kill $chpid
|
|
rm -f $sleep
|