mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-17 18:26:55 +00:00
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>
21 lines
525 B
Bash
Executable File
21 lines
525 B
Bash
Executable File
#!/bin/bash
|
|
# Check if btrfs-convert can handle an ext4 fs whose size is 64G.
|
|
# That fs size could trigger a multiply overflow and screw up free space
|
|
# calculation
|
|
|
|
source "$TEST_TOP/common" || exit
|
|
source "$TEST_TOP/common.convert" || exit
|
|
|
|
check_prereq btrfs-convert
|
|
check_global_prereq mke2fs
|
|
|
|
setup_root_helper
|
|
prepare_test_dev 64g
|
|
|
|
convert_test_prep_fs ext4 mke2fs -t ext4 -b 4096
|
|
run_check_umount_test_dev
|
|
|
|
# Unpatched btrfs-convert would fail half way due to corrupted free space
|
|
# cache tree
|
|
convert_test_do_convert
|