mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
edfc6a8c12
Michael (This used to be ctdb commit c13077ca64f6e6569c30ef7fcb044e5711dce1a3)
44 lines
856 B
Bash
Executable File
44 lines
856 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify that the ctdb_transaction test succeeds.
|
|
|
|
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 two copies of ctdb_transaction on each node with a 30 second
|
|
timeout.
|
|
3. Ensure that all ctdb_transaction processes complete successfully.
|
|
|
|
Expected results:
|
|
|
|
* ctdb_transaction runs without error.
|
|
EOF
|
|
}
|
|
|
|
. ctdb_test_functions.bash
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
set -e
|
|
|
|
cluster_is_healthy
|
|
|
|
try_command_on_node 0 "$CTDB listnodes"
|
|
num_nodes=$(echo "$out" | wc -l)
|
|
|
|
if test "x${CTDB_TEST_TIMELIMIT}" == "x" ; then
|
|
CTDB_TEST_TIMELIMIT=30
|
|
fi
|
|
|
|
t="$CTDB_TEST_WRAPPER $VALGRIND ctdb_transaction --timelimit=${CTDB_TEST_TIMELIMIT}"
|
|
|
|
echo "Running ctdb_transaction on all $num_nodes nodes."
|
|
try_command_on_node -v -pq all "$t & $t"
|