summaryrefslogtreecommitdiffstats
path: root/tools/regression/usr.bin/pkill/pgrep-t.t
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/usr.bin/pkill/pgrep-t.t')
-rw-r--r--tools/regression/usr.bin/pkill/pgrep-t.t15
1 files changed, 12 insertions, 3 deletions
diff --git a/tools/regression/usr.bin/pkill/pgrep-t.t b/tools/regression/usr.bin/pkill/pgrep-t.t
index 7fb580d..7e81ada 100644
--- a/tools/regression/usr.bin/pkill/pgrep-t.t
+++ b/tools/regression/usr.bin/pkill/pgrep-t.t
@@ -3,12 +3,15 @@
base=`basename $0`
-echo "1..1"
+echo "1..2"
name="pgrep -t <tty>"
tty=`ps -o tty -p $$ | tail -1`
if [ "$tty" = "??" ]; then
tty="-"
+ ttyshort="-"
+else
+ ttyshort=`echo $tty | cut -c 4-`
fi
sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
ln -sf /bin/sleep $sleep
@@ -17,9 +20,15 @@ sleep 0.3
chpid=$!
pid=`pgrep -f -t $tty $sleep`
if [ "$pid" = "$chpid" ]; then
- echo "ok - $name"
+ 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 - $name"
+ echo "not ok 2 - $name"
fi
kill $chpid
rm -f $sleep
OpenPOWER on IntegriCloud