mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
8ed075d396
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
24 lines
421 B
Bash
Executable File
24 lines
421 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Release 1 IP, 10 connections killed OK"
|
|
|
|
setup
|
|
|
|
ctdb_get_1_public_address |
|
|
while read dev ip bits ; do
|
|
ok_null
|
|
simple_test_event "takeip" $dev $ip $bits
|
|
|
|
count=10
|
|
setup_tcp_connections $count \
|
|
"$ip" 445 10.254.254.0 12300
|
|
|
|
ok <<EOF
|
|
Killed ${count}/${count} TCP connections to released IP $ip
|
|
EOF
|
|
|
|
simple_test_event "releaseip" $dev $ip $bits
|
|
done
|