mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-05 21:19:33 +00:00
da04a62697
Don't hardcode the supported checksums and use the list provided by the kernel module. The status check of support is moved to the top of the script so it's more visible. Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.com> [ move checks ] Signed-off-by: David Sterba <dsterba@suse.com>
36 lines
941 B
Bash
Executable File
36 lines
941 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Test creating images with all supported checksums followed by mount
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq mkfs.btrfs
|
|
check_prereq btrfs
|
|
|
|
setup_root_helper
|
|
prepare_test_dev
|
|
|
|
if ! [ -f "/sys/fs/btrfs/features/supported_checksums" ]; then
|
|
_not_run "kernel support for checksums missing"
|
|
fi
|
|
|
|
test_mkfs_mount_checksum()
|
|
{
|
|
local csum
|
|
|
|
csum="$1"
|
|
run_check_stdout $SUDO_HELPER "$TOP/mkfs.btrfs" -f --csum "$csum" "$TEST_DEV" | grep -q "Checksum:.*$csum"
|
|
run_check $SUDO_HELPER "$TOP/btrfs" inspect-internal dump-super "$TEST_DEV"
|
|
run_check $SUDO_HELPER "$TOP/btrfs" check "$TEST_DEV"
|
|
|
|
run_check_mount_test_dev
|
|
run_check "$TOP/btrfs" filesystem df "$TEST_MNT"
|
|
run_check $SUDO_HELPER "$TOP/btrfs" filesystem usage "$TEST_MNT"
|
|
run_check $SUDO_HELPER "$TOP/btrfs" device usage "$TEST_MNT"
|
|
run_check_umount_test_dev
|
|
}
|
|
|
|
for csum in $(cat /sys/fs/btrfs/features/supported_checksums); do
|
|
test_mkfs_mount_checksum "$csum"
|
|
done
|