blob: 2f709a8cc0dd6f95eab7a2e6231758812316526f (
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
|
#!/bin/bash
test_info()
{
cat <<EOF
Verify that 'ctdb listvars' shows a list of all tunable variables.
This test simply checks that at least 5 sane looking lines are
printed. It does not check that the list is complete or that the
values are sane.
Prerequisites:
* An active CTDB cluster with at least 2 active nodes.
Steps:
1. Verify that the status on all of the ctdb nodes is 'OK'.
2. Run 'ctdb listvars' and verify that it shows a list of tunable
variables and their current values.
Expected results:
* 'ctdb listvars' works as expected.
EOF
}
. "${TEST_SCRIPTS_DIR}/integration.bash"
ctdb_test_init "$@"
set -e
cluster_is_healthy
try_command_on_node -v 0 "$CTDB listvars"
sanity_check_output \
5 \
'^[[:alpha:]][[:alnum:]]+[[:space:]]*=[[:space:]]*[[:digit:]]+$' \
"$out"
|