blob: 6e220a2f8d7819c8e38be217d4d7911e93a57099 (
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
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "3 nodes, all ok, GET_PID control times out"
setup_lvs <<EOF
EOF
setup_ctdbd <<EOF
NODEMAP
0 192.168.20.41 0x0 CURRENT RECMASTER
1 192.168.20.42 0x0
2 192.168.20.43 0x0
CONTROLFAILS
30 0 TIMEOUT # Make "ctdb getpid" time out
EOF
#####
required_result 1 <<EOF
Maximum runtime exceeded - exiting
EOF
simple_test -T 3
|