summaryrefslogtreecommitdiffstats
path: root/bin/pkill/tests/pgrep-_s_test.sh
blob: ce0bde3d8d122c0505d9fe706c69a38121915170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# $FreeBSD$

base=`basename $0`

echo "1..2"

exp_pid="$(ps ax | grep '\[idle\]' | awk '{print $1}')"

name="pgrep -S"
pid=`pgrep -Sx idle`
if [ "$pid" = "$exp_pid" ]; then
	echo "ok 1 - $name"
else
	echo "not ok 1 - $name"
fi
pid=`pgrep -x idle`
if [ "$pid" != "$exp_pid" ]; then
	echo "ok 2 - $name"
else
	echo "not ok 2 - $name"
fi
OpenPOWER on IntegriCloud