From 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:49:25 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- tests/t_uninit_bg_rm/script | 55 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 tests/t_uninit_bg_rm/script (limited to 'tests/t_uninit_bg_rm/script') diff --git a/tests/t_uninit_bg_rm/script b/tests/t_uninit_bg_rm/script new file mode 100644 index 0000000..66eb21c --- /dev/null +++ b/tests/t_uninit_bg_rm/script @@ -0,0 +1,55 @@ +test_description="remove uninit_bg" +OUT=$test_name.log +FSCK_OPT=-yf +EXP=$test_dir/expect + +os=$(uname -s) +if [ "$os" = "Darwin" -o "$os" = "GNU" -o "FreeBSD" ]; then + # creates a 10GB filesystem + echo "$test_name: $test_description: skipped for $os" + return 0 +fi + +cp /dev/null $TMPFILE + +echo mke2fs -q -t ext4 -F -o Linux -b 1024 test.img 1G > $OUT.new +$MKE2FS -q -t ext4 -F -o Linux -b 1024 $TMPFILE 1G >> $OUT.new 2>&1 + +echo "tune2fs -f -O ^uninit_bg test.img" >> $OUT.new +$TUNE2FS -f -O ^uninit_bg $TMPFILE >> $OUT.new 2>&1 + +echo " " >> $OUT.new +echo fsck $FSCK_OPT -N test_filesys test.img >> $OUT.new +$FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 + +echo " " >> $OUT.new +cp /dev/null $TMPFILE +echo mke2fs -q -t ext4 -O bigalloc -F -o Linux -b 1024 -C 8192 test.img 10G >> $OUT.new +$MKE2FS -q -t ext4 -O bigalloc -F -o Linux -b 1024 -C 8192 $TMPFILE 10G >> $OUT.new 2>&1 + +echo "tune2fs -f -O ^uninit_bg test.img" >> $OUT.new +$TUNE2FS -f -O ^uninit_bg $TMPFILE >> $OUT.new 2>&1 + +echo " " >> $OUT.new +echo fsck $FSCK_OPT -N test_filesys test.img >> $OUT.new +$FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 +sed -f $cmd_dir/filter.sed < $OUT.new > $OUT + +rm -f $TMPFILE $OUT.new + +# +# Do the verification +# + +cmp -s $OUT $EXP +status=$? + +if [ "$status" = 0 ] ; then + echo "$test_name: $test_description: ok" + touch $test_name.ok +else + echo "$test_name: $test_description: failed" + diff $DIFF_OPTS $EXP $OUT > $test_name.failed +fi + +unset IMAGE FSCK_OPT OUT EXP -- cgit v1.2.3