'-F' option now needs locked pidfile. Modify regression tests respectively.

This commit is contained in:
pjd 2005-08-24 19:39:29 +00:00
parent 242683f73f
commit 2cdfac31a9
2 changed files with 4 additions and 6 deletions

View File

@ -9,16 +9,15 @@ name="pgrep -F <pidfile>"
pidfile=`mktemp /tmp/$base.XXXXXX` || exit 1
sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
ln -sf /bin/sleep $sleep
$sleep 5 &
daemon -p $pidfile $sleep 5
sleep 0.3
chpid=$!
echo $chpid > $pidfile
chpid=`cat $pidfile`
pid=`pgrep -f -F $pidfile $sleep`
if [ "$pid" = "$chpid" ]; then
echo "ok - $name"
else
echo "not ok - $name"
fi
kill $chpid
kill "$chpid"
rm -f $pidfile
rm -f $sleep

View File

@ -9,9 +9,8 @@ name="pkill -F <pidfile>"
pidfile=`mktemp /tmp/$base.XXXXXX` || exit 1
sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
ln -sf /bin/sleep $sleep
$sleep 5 &
daemon -p $pidfile $sleep 5
sleep 0.3
echo $! > $pidfile
pkill -f -F $pidfile $sleep
ec=$?
case $ec in