1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

ctdb-tests: Clean up and rename simple transaction_loop recovery test

* Rename to clarify purpose of test

* Simplify test info to avoid unnecessary bit-rot

* Restart after test since test does heavy database manipulation

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12109

Pair-programmed-with: Amitay Isaacs <amitay@gmail.com>
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2016-08-02 14:52:14 +10:00 committed by Martin Schwenke
parent de04cd5784
commit 8ce8e1d7f8

View File

@ -3,22 +3,11 @@
test_info()
{
cat <<EOF
Verify that the ctdb_transaction test succeeds.
Verify that the transaction_loop test succeeds with recoveries.
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
}
@ -49,6 +38,8 @@ set -e
cluster_is_healthy
ctdb_restart_when_done
try_command_on_node 0 "$CTDB attach transaction_loop.tdb persistent"
try_command_on_node 0 "$CTDB wipedb transaction_loop.tdb"
@ -65,6 +56,5 @@ t="$CTDB_TEST_WRAPPER $VALGRIND transaction_loop \
echo "Starting recovery loop"
recovery_loop_start
echo "Running ctdb_transaction on all $num_nodes nodes."
echo "Running transaction_loop on all $num_nodes nodes."
try_command_on_node -v -p all "$t"