mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
a496c8bca6
They are contrived and hard to read. Better to just enumerate the few sub-tests in these testcases. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
23 lines
383 B
Bash
Executable File
23 lines
383 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "error - add same IP twice"
|
|
|
|
setup_ctdb
|
|
|
|
public_address=$(ctdb_get_1_public_address)
|
|
dev="${public_address%% *}"
|
|
t="${public_address#* }"
|
|
ip="${t% *}"
|
|
bits="${t#* }"
|
|
|
|
ok_null
|
|
simple_test $public_address
|
|
|
|
required_result 1 <<EOF
|
|
RTNETLINK answers: File exists
|
|
Failed to add $ip/$bits on dev $dev
|
|
EOF
|
|
simple_test $public_address
|