btrfs-progs/tests/mkfs-tests/012-rootdir-no-shrink/test.sh
David Sterba f6bbe06c08 btrfs-progs: tests: add protection against running out of test suite
Executing the script inside the directories as './test.sh' is not
supposed to work but could happen accidentally. With an exit after
attempting to source the we can fix that.

Signed-off-by: David Sterba <dsterba@suse.com>
2023-04-25 16:59:41 +02:00

40 lines
847 B
Bash
Executable File

#!/bin/bash
# Test if mkfs.btrfs --rootdir will skip shrinking correctly
source "$TEST_TOP/common" || exit
check_prereq mkfs.btrfs
setup_root_helper
fs_size=$((512 * 1024 * 1024))
bs=$((1024 * 1024))
tmp=$(_mktemp_dir mkfs-rootdir)
prepare_test_dev "$fs_size"
# No shrink case
run_check_mkfs_test_dev --rootdir "$tmp"
run_check_mount_test_dev
# We should be able to write at least half of the fs size data since the fs is
# not shrunk
run_check $SUDO_HELPER dd if=/dev/zero bs="$bs" count=$(($fs_size / $bs / 2)) \
of="$TEST_MNT/file"
run_check_umount_test_dev
# Shrink case
run_check_mkfs_test_dev --rootdir "$tmp" --shrink
run_check_mount_test_dev
run_mustfail "mkfs.btrfs for shrink rootdir" \
$SUDO_HELPER dd if=/dev/zero bs="$bs" count=$(($fs_size / $bs / 2)) \
of="$TEST_MNT/file"
run_check_umount_test_dev
rm -rf -- "$tmp"