blob: 935373ac45ef7527a5ec897ab2977a30335ac1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "debug script"
setup_eventd
result_filter ()
{
_pid="[0-9][0-9]*"
sed -e "s| ${_pid}| PID|"
}
required_error ETIMEDOUT <<EOF
Event timeout in random timed out
EOF
simple_test run 5 random timeout
# wait for debug hung script
sleep 5
ok <<EOF
args: PID timeout
EOF
unit_test cat "${CTDB_BASE}/debug_script.log"
|