test: fix search path for scripts
Fails when building in a sub-directory Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
parent
d0166e505d
commit
2d95e0ccf0
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./start.sh
|
if [ x"${srcdir}" = x ]; then
|
||||||
|
srcdir=.
|
||||||
|
fi
|
||||||
|
. ${srcdir}/start.sh
|
||||||
|
|
||||||
export MSG="no-openlog-apitest"
|
export MSG="no-openlog-apitest"
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Test FWD between two syslogd, second binds 127.0.0.2:5555
|
# Test FWD between two syslogd, second binds 127.0.0.2:5555
|
||||||
. ./start.sh
|
if [ x"${srcdir}" = x ]; then
|
||||||
|
srcdir=.
|
||||||
|
fi
|
||||||
|
. ${srcdir}/start.sh
|
||||||
|
|
||||||
MSG="fwd and allow"
|
MSG="fwd and allow"
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./start.sh
|
if [ x"${srcdir}" = x ]; then
|
||||||
|
srcdir=.
|
||||||
|
fi
|
||||||
|
. ${srcdir}/start.sh
|
||||||
|
|
||||||
MSG="foobar"
|
MSG="foobar"
|
||||||
MSG2="xyzzy"
|
MSG2="xyzzy"
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
# Test '-- MARK --' in log, depends on fwd.sh
|
# Test '-- MARK --' in log, depends on fwd.sh
|
||||||
. ./start.sh
|
if [ x"${srcdir}" = x ]; then
|
||||||
|
srcdir=.
|
||||||
|
fi
|
||||||
|
. ${srcdir}/start.sh
|
||||||
|
|
||||||
check_mark()
|
check_mark()
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./start.sh
|
if [ x"${srcdir}" = x ]; then
|
||||||
|
srcdir=.
|
||||||
|
fi
|
||||||
|
. ${srcdir}/start.sh
|
||||||
|
|
||||||
MSG="kilroy"
|
MSG="kilroy"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user