mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
colliding upper case letters as the lower case letter with a '_' in front. MFC after: 3 days Discussed with: ed Spotted by: Michael David Crawford <mdc at prgmr.com>
20 lines
280 B
Bash
20 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
|