mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
3bd68261ec
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net> Autobuild-User(master): Martin Schwenke <martins@samba.org> Autobuild-Date(master): Fri Sep 6 11:11:02 UTC 2019 on sn-devel-184
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"
|