summaryrefslogtreecommitdiffstats
path: root/tools/regression/usr.bin/pkill/pgrep-t.t
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2005-11-07 16:56:16 +0000
committerpjd <pjd@FreeBSD.org>2005-11-07 16:56:16 +0000
commit2d70eabb2812a44bf23d3390797bd387ba426ddc (patch)
tree8499d89ff53ba5057328c48c4214459ee275eda8 /tools/regression/usr.bin/pkill/pgrep-t.t
parent1979476cc606db90b9610dd71429e1b833a66be9 (diff)
downloadFreeBSD-src-2d70eabb2812a44bf23d3390797bd387ba426ddc.zip
FreeBSD-src-2d70eabb2812a44bf23d3390797bd387ba426ddc.tar.gz
Add tests for -t option with short tty name - pkill(1) should accept both
(eg. "ttyv0" and "v0").
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