2d95e0ccf0
Fails when building in a sub-directory Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
17 lines
226 B
Bash
Executable File
17 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
if [ x"${srcdir}" = x ]; then
|
|
srcdir=.
|
|
fi
|
|
. ${srcdir}/start.sh
|
|
|
|
MSG="foobar"
|
|
MSG2="xyzzy"
|
|
|
|
../src/logger -u ${SOCK} ${MSG}
|
|
grep ${MSG} ${LOG}
|
|
|
|
../src/logger -u ${ALTSOCK} ${MSG2}
|
|
grep ${MSG2} ${LOG}
|
|
|
|
. ./stop.sh
|