aboutsummaryrefslogtreecommitdiff
path: root/bin/pkill/tests/pgrep-LF_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pkill/tests/pgrep-LF_test.sh')
-rw-r--r--bin/pkill/tests/pgrep-LF_test.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/bin/pkill/tests/pgrep-LF_test.sh b/bin/pkill/tests/pgrep-LF_test.sh
deleted file mode 100644
index 4818869d8d6e..000000000000
--- a/bin/pkill/tests/pgrep-LF_test.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-base=`basename $0`
-
-echo "1..2"
-
-name="pgrep -LF <pidfile>"
-pidfile=$(pwd)/pidfile.txt
-sleep=$(pwd)/sleep.txt
-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