blob: 27025df93097f02e6ae88bb797726bb9987582d6 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/usr/bin/env bash
# Verify that 'ctdb getpid' works as expected
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
ctdb_test_init
try_command_on_node 0 "$CTDB listnodes | wc -l"
num_nodes="$out"
echo "There are $num_nodes nodes..."
# Call getpid a few different ways and make sure the answer is always the same.
try_command_on_node -v 0 "onnode -q all $CTDB getpid"
pids_onnode="$out"
cmd=""
n=0
while [ $n -lt $num_nodes ] ; do
cmd="${cmd}${cmd:+; }$CTDB getpid -n $n"
n=$(($n + 1))
done
try_command_on_node -v 0 "( $cmd )"
pids_getpid_n="$out"
if [ "$pids_onnode" = "$pids_getpid_n" ] ; then
echo "They're the same... cool!"
else
die "Error: they differ."
fi
echo "Checking each PID for validity"
n=0
while [ $n -lt $num_nodes ] ; do
read pid
try_command_on_node $n "ls -l /proc/${pid}/exe | sed -e 's@.*/@@'"
echo -n "Node ${n}, PID ${pid} looks to be running \"$out\" - "
case "$out" in
ctdbd) : ;;
memcheck*)
if [ -z "$VALGRIND" ] ; then
die "BAD"
fi
;;
*) die "BAD"
esac
echo "GOOD!"
n=$(($n + 1))
done <<<"$pids_onnode"
|