freebsd-src/bin/pkill/tests/pgrep-t_test.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
617 B
Bash
Raw Normal View History

#!/bin/sh
base=`basename $0`
echo "1..2"
name="pgrep -t <tty>"
tty=`ps -x -o tty -p $$ | tail -1`
if [ "$tty" = "??" -o "$tty" = "-" ]; then
tty="-"
ttyshort="-"
else
2010-01-04 10:59:14 +00:00
case $tty in
pts/*) ttyshort=`echo $tty | cut -c 5-` ;;
2010-01-04 11:11:37 +00:00
*) ttyshort=`echo $tty | cut -c 4-` ;;
2010-01-04 10:59:14 +00:00
esac
fi
sleep=$(pwd)/sleep.txt
ln -sf /bin/sleep $sleep
$sleep 5 &
sleep 0.3
chpid=$!
pid=`pgrep -f -t $tty $sleep`
if [ "$pid" = "$chpid" ]; then
echo "ok 1 - $name"
else
echo "not ok 1 - $name"
fi
pid=`pgrep -f -t $ttyshort $sleep`
if [ "$pid" = "$chpid" ]; then
echo "ok 2 - $name"
else
echo "not ok 2 - $name"
fi
kill $chpid
rm -f $sleep