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.
25 lines
348 B
Bash
25 lines
348 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
base=`basename $0`
|
|
|
|
echo "1..1"
|
|
|
|
name="pgrep -i"
|
|
sleep=$(pwd)/sleep.txt
|
|
usleep="${sleep}XXX"
|
|
touch $usleep
|
|
lsleep="${sleep}xxx"
|
|
ln -sf /bin/sleep $usleep
|
|
$usleep 5 &
|
|
sleep 0.3
|
|
chpid=$!
|
|
pid=`pgrep -f -i $lsleep`
|
|
if [ "$pid" = "$chpid" ]; then
|
|
echo "ok - $name"
|
|
else
|
|
echo "not ok - $name"
|
|
fi
|
|
kill $chpid
|
|
rm -f $sleep $usleep
|