diff options
Diffstat (limited to 'test/TEST-46-HOMED/test.sh')
-rwxr-xr-x | test/TEST-46-HOMED/test.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/test/TEST-46-HOMED/test.sh b/test/TEST-46-HOMED/test.sh deleted file mode 100755 index 973b030e65..0000000000 --- a/test/TEST-46-HOMED/test.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env bash -# SPDX-License-Identifier: LGPL-2.1-or-later -set -e - -TEST_DESCRIPTION="testing homed" - -# Skip the qemu version of the test, unless we have btrfs -(modprobe -nv btrfs && command -v mkfs.btrfs >/dev/null) || TEST_NO_QEMU=1 - -# shellcheck source=test/test-functions -. "${TEST_BASE_DIR:?}/test-functions" - -get_bool "${NO_BUILD:-}" && HOMECTL_BIN="homectl" || HOMECTL_BIN="${BUILD_DIR:?}/homectl" -test_require_bin "$HOMECTL_BIN" - -# 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 - inst_binary ssh - inst_binary sshd - inst_binary ssh-keygen - image_install -o /usr/lib/ssh/sshd-session /usr/libexec/openssh/sshd-session -} - -do_test "$@" |