2016-10-10 03:00:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Check if btrfs-convert can copy common inode flags like SYNC/IMMUTABLE
|
|
|
|
|
2018-02-08 06:34:19 +00:00
|
|
|
source "$TEST_TOP/common"
|
|
|
|
source "$TEST_TOP/common.convert"
|
2016-10-10 03:00:13 +00:00
|
|
|
|
|
|
|
setup_root_helper
|
2017-10-27 13:50:34 +00:00
|
|
|
prepare_test_dev
|
2016-10-10 03:00:13 +00:00
|
|
|
check_prereq btrfs-convert
|
2017-08-29 14:35:01 +00:00
|
|
|
check_global_prereq mke2fs
|
|
|
|
check_global_prereq lsattr
|
|
|
|
check_global_prereq chattr
|
2016-10-10 03:00:13 +00:00
|
|
|
|
|
|
|
fail=0
|
|
|
|
default_mke2fs="mke2fs -t ext4 -b 4096"
|
|
|
|
convert_test_preamble '' 'common inode flags test' 16k "$default_mke2fs"
|
2017-07-20 15:53:56 +00:00
|
|
|
convert_test_prep_fs ext4 $default_mke2fs
|
2016-10-10 03:00:13 +00:00
|
|
|
|
|
|
|
# create file with specific flags
|
2017-04-23 19:00:00 +00:00
|
|
|
run_check $SUDO_HELPER touch "$TEST_MNT/flag_test"
|
|
|
|
run_check $SUDO_HELPER chattr +aAdSi "$TEST_MNT/flag_test"
|
2016-10-10 03:00:13 +00:00
|
|
|
|
|
|
|
run_check_umount_test_dev
|
|
|
|
convert_test_do_convert
|
|
|
|
run_check_mount_test_dev
|
|
|
|
|
|
|
|
# Log the status
|
2017-04-23 19:00:00 +00:00
|
|
|
run_check lsattr "$TEST_MNT/flag_test"
|
2016-10-10 03:00:13 +00:00
|
|
|
# Above flags should be copied to btrfs flags, and lsattr should get them
|
2017-04-23 19:00:00 +00:00
|
|
|
run_check_stdout lsattr "$TEST_MNT/flag_test" | cut -f1 -d\ | grep "[aAdiS]" -q
|
2016-10-10 03:00:13 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
rm tmp_output
|
|
|
|
_fail "no common inode flags are copied after convert"
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_check_umount_test_dev
|
2017-09-07 12:44:45 +00:00
|
|
|
convert_test_post_rollback ext4
|