freebsd-dev/tools/regression/usr.bin/pkill/pgrep-S.t
Pawel Jakub Dawidek 1897c44125 Add regression tests for pkill/pgrep.
MFC after:	3 days
2005-03-20 12:38:08 +00:00

21 lines
280 B
Bash

#!/bin/sh
# $FreeBSD$
base=`basename $0`
echo "1..2"
name="pgrep -S"
pid=`pgrep -Sx g_event`
if [ "$pid" = "2" ]; then
echo "ok 1 - $name"
else
echo "not ok 1 - $name"
fi
pid=`pgrep -x g_event`
if [ "$pid" != "2" ]; then
echo "ok 2 - $name"
else
echo "not ok 2 - $name"
fi