summaryrefslogtreecommitdiff
path: root/ctdb/tests/tool/ctdb.process-exists.001.sh
blob: 1b6d213b3ad6243f19338ff8a951afd771e3918c (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 "ctdbd process on node 0"

setup_ctdbd <<EOF
NODEMAP
0       192.168.20.41   0x0     CURRENT RECMASTER
1       192.168.20.42   0x0
2       192.168.20.43   0x0
EOF

dummy_client -s $ctdbd_socket &
pid=$!

wait_until 10 $CTDB process-exists "$pid"

ok "PID $pid exists"
simple_test "$pid"

kill -9 $pid

pid=$(ctdbd_getpid)
required_result 1 "PID $pid does not exist"
simple_test "$pid"