test: verify remote logging in logger tool

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg
2022-07-31 22:56:16 +02:00
parent 911e3f05a1
commit 87ff7d6901
2 changed files with 25 additions and 2 deletions

21
test/logger.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
# Verify logger capabilities, for now just remote logger
# shellcheck disable=SC1090
#set -x
if [ x"${srcdir}" = x ]; then
srcdir=.
fi
. ${srcdir}/lib.sh
ip link set lo up
print "Starting stand-alone logger test ..."
cap_start
logger -b -H "$(basename "$0")" -h 127.0.0.3 -I $$ -t test1 "Kilroy was here"
cap_stop
# Check for the composed BSD procname{PID] syntax
STR="test1\[$$\]"
cap_find "$STR" || FAIL "Cannot find: $STR"
OK