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>
21 lines
324 B
Bash
Executable File
21 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "set to default lock file, directory is created"
|
|
|
|
setup
|
|
|
|
dir=$(dirname "$CTDB_RECOVERY_LOCK")
|
|
|
|
# Ensure directory doesn't exist before
|
|
required_result 1 ""
|
|
unit_test test -d "$dir"
|
|
|
|
ok_null
|
|
simple_test
|
|
|
|
# Ensure directory exists after
|
|
ok_null
|
|
unit_test test -d "$dir"
|