mirror of
https://github.com/samba-team/samba.git
synced 2025-03-09 08:58:35 +03:00
Always use CTDB_DBDIR_PERSISTENT, which is setup by the test infrastructure. The persistent database directory is not (necessarily) relative to the volatile one. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
20 lines
330 B
Bash
Executable File
20 lines
330 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "TDB check, tdbtool supports check, bad persistent TDB"
|
|
|
|
setup
|
|
|
|
FAKE_TDBTOOL_SUPPORTS_CHECK="yes"
|
|
|
|
db="${CTDB_DBDIR_PERSISTENT}/foo.tdb.0"
|
|
touch "$db"
|
|
FAKE_TDB_IS_OK="no"
|
|
|
|
required_result 1 <<EOF
|
|
Persistent database ${db} is corrupted! CTDB will not start.
|
|
EOF
|
|
|
|
simple_test
|