2d95e0ccf0
Fails when building in a sub-directory Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
18 lines
245 B
Bash
Executable File
18 lines
245 B
Bash
Executable File
#!/bin/sh -e
|
|
# Test '-- MARK --' in log, depends on fwd.sh
|
|
if [ x"${srcdir}" = x ]; then
|
|
srcdir=.
|
|
fi
|
|
. ${srcdir}/start.sh
|
|
|
|
check_mark()
|
|
{
|
|
grep "MARK" "${LOG}" && return 0
|
|
sleep 1
|
|
return 1
|
|
}
|
|
|
|
tenacious 120 check_mark
|
|
|
|
. ./stop.sh
|