523926a07d
The release suite fails with no permissions to dump loopback, so let's run tests in an unshare, one per test, with and start as many syslogd as needed for each test -- also easier to debug since all are then fully stand-alone. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
15 lines
191 B
Bash
Executable File
15 lines
191 B
Bash
Executable File
#!/bin/sh -e
|
|
# Test '-- MARK --' in log, depends on fwd.sh
|
|
. ./start.sh
|
|
|
|
check_mark()
|
|
{
|
|
grep "MARK" "${LOG}" && return 0
|
|
sleep 1
|
|
return 1
|
|
}
|
|
|
|
tenacious 120 check_mark
|
|
|
|
. ./stop.sh
|