1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-25 01:34:28 +03:00
systemd/test/TEST-46-HOMED/test.sh

27 lines
681 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
2019-07-07 18:30:15 +03:00
set -e
2019-07-07 18:30:15 +03:00
TEST_DESCRIPTION="testing homed"
2021-11-15 18:21:37 +03:00
# Skip the qemu version of the test, unless we have btrfs
(modprobe -nv btrfs && command -v mkfs.btrfs >/dev/null) || TEST_NO_QEMU=1
2019-07-07 18:30:15 +03:00
# shellcheck source=test/test-functions
. "${TEST_BASE_DIR:?}/test-functions"
2019-07-07 18:30:15 +03:00
get_bool "${NO_BUILD:-}" && HOMECTL_BIN="homectl" || HOMECTL_BIN="${BUILD_DIR:?}/homectl"
test_require_bin "$HOMECTL_BIN"
2021-11-15 18:21:37 +03:00
# Need loop devices for mounting images
test_append_files() {
if ! get_bool "$TEST_NO_QEMU" ; then
instmods loop =block
install_dmevent
install_btrfs
generate_module_dependencies
fi
2021-11-15 18:21:37 +03:00
}
do_test "$@"