]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ctdb-tests: Drop DisableIPFailover simple test
authorMartin Schwenke <martin@meltin.net>
Tue, 21 Aug 2018 01:18:34 +0000 (11:18 +1000)
committerAmitay Isaacs <amitay@samba.org>
Fri, 24 Aug 2018 08:59:21 +0000 (10:59 +0200)
This is about to become a config file option that can't be dynamically
changed at run-time, so drop this test for now.  This test will be added
once the tunable becomes a config file option.

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

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
ctdb/tests/simple/19_ip_takeover_noop.sh

index c48379e58779919503093bcae95c7c805a2ec01c..af0cdee383bf04fc9129628bebdb41e9e369cd3a 100755 (executable)
@@ -3,10 +3,7 @@
 test_info()
 {
     cat <<EOF
-Check that CTDB operates correctly if:
-
-* DisableIPFailover is set; or
-* there are 0 public IPs configured
+Check that CTDB operates correctly if there are 0 public IPs configured
 
 This test only does anything with local daemons.  On a real cluster it
 has no way of updating configuration.
@@ -31,30 +28,6 @@ ctdb_restart_when_done
 
 select_test_node_and_ips
 
-echo "Setting DisableIPFailover=1 on all nodes"
-try_command_on_node all $CTDB setvar DisableIPFailover 1
-
-echo "Getting \"before\" IP allocation..."
-try_command_on_node -v any $CTDB ip all
-before="$out"
-
-echo "Disabling node ${test_node}..."
-try_command_on_node "$test_node" $CTDB disable
-wait_until_node_has_status $test_node disabled
-
-echo "Getting \"after\" IP allocation..."
-try_command_on_node -v any $CTDB ip all
-after="$out"
-
-if [ "$before" == "$after" ] ; then
-       echo "GOOD: IP allocation is unchanged"
-       echo
-else
-       die "BAD: IP allocation changed"
-fi
-
-echo "----------------------------------------"
-
 daemons_stop
 
 echo "Starting CTDB with an empty public addresses configuration..."