mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
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.
27 lines
333 B
Bash
27 lines
333 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
base=`basename $0`
|
|
|
|
echo "1..1"
|
|
|
|
name="pkill -F <pidfile>"
|
|
pidfile=$(pwd)/pidfile.txt
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
$sleep 5 &
|
|
sleep 0.3
|
|
echo $! > $pidfile
|
|
pkill -f -F $pidfile $sleep
|
|
ec=$?
|
|
case $ec in
|
|
0)
|
|
echo "ok - $name"
|
|
;;
|
|
*)
|
|
echo "not ok - $name"
|
|
;;
|
|
esac
|
|
|
|
rm -f $pidfile
|
|
rm -f $sleep
|