1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00
systemd/test/TEST-83-BTRFS/test.sh
Frantisek Sumsal 6743066875 test: check if 'btrfs filesystem' supports 'mkswapfile'
Instead of deny-listing the test on Ubuntu CI, so it gets enabled
automagically once btrfs-progs is updated to a newer version there.
2023-12-04 11:12:51 +01:00

31 lines
690 B
Bash
Executable File

#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e
TEST_DESCRIPTION="test btrfs-util"
TEST_NO_NSPAWN=1
FSTYPE=btrfs
IMAGE_NAME="btrfs"
TEST_FORCE_NEWIMAGE=1
# shellcheck source=test/test-functions
. "${TEST_BASE_DIR:?}/test-functions"
if ! command -v btrfs >/dev/null || ! command -v mkfs.btrfs >/dev/null; then
echo "TEST: $TEST_DESCRIPTION [SKIPPED]: btrfs not supported by host" >&2
exit 0
fi
if ! btrfs filesystem mkswapfile --help >/dev/null; then
echo "TEST: $TEST_DESCRIPTION [SKIPPED]: 'btrfs filesystem' doesn't support 'mkswapfile' subcommand" >&2
exit 0
fi
test_append_files() {
install_btrfs
image_install sync
}
do_test "$@"