mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
db5c604152
Switch to generic setup() function and set variables there. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
21 lines
390 B
Bash
Executable File
21 lines
390 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "TDB check, tdbtool does not support check, good TDB"
|
|
|
|
setup
|
|
|
|
FAKE_TDBTOOL_SUPPORTS_CHECK="no"
|
|
|
|
touch "${CTDB_DBDIR}/foo.tdb.0"
|
|
FAKE_TDB_IS_OK="yes"
|
|
|
|
ok <<EOF
|
|
WARNING: The installed 'tdbtool' does not offer the 'check' subcommand.
|
|
Using 'tdbdump' for database checks.
|
|
Consider updating 'tdbtool' for better checks!
|
|
EOF
|
|
|
|
simple_test
|