Current Path : /usr/src/tools/regression/usr.bin/pkill/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/tools/regression/usr.bin/pkill/pgrep-LF.t |
#!/bin/sh # $FreeBSD: release/9.1.0/tools/regression/usr.bin/pkill/pgrep-LF.t 149474 2005-08-25 20:13:58Z pjd $ base=`basename $0` echo "1..2" name="pgrep -LF <pidfile>" pidfile=`mktemp /tmp/$base.XXXXXX` || exit 1 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1 ln -sf /bin/sleep $sleep daemon -p $pidfile $sleep 5 sleep 0.3 chpid=`cat $pidfile` pid=`pgrep -f -L -F $pidfile $sleep` if [ "$pid" = "$chpid" ]; then echo "ok 1 - $name" else echo "not ok 1 - $name" fi kill "$chpid" # Be sure we cannot find process which pidfile is not locked. $sleep 5 & sleep 0.3 chpid=$! echo $chpid > $pidfile pgrep -f -L -F $pidfile $sleep 2>/dev/null ec=$? case $ec in 0) echo "not ok 2 - $name" ;; *) echo "ok 2 - $name" ;; esac kill "$chpid" rm -f $pidfile rm -f $sleep