From 5dced3d1b3deca80e01415a2e35dc7972dcbfae7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 11:25:10 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- tests/r_move_itable_nostride/script | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 tests/r_move_itable_nostride/script (limited to 'tests/r_move_itable_nostride/script') diff --git a/tests/r_move_itable_nostride/script b/tests/r_move_itable_nostride/script new file mode 100644 index 0000000..d24df22 --- /dev/null +++ b/tests/r_move_itable_nostride/script @@ -0,0 +1,58 @@ +os=$(uname -s) +if [ "$os" = "Darwin" -o "$os" = "GNU" -o "FreeBSD" ]; then + # creates a 96GB filesystem + echo "$test_name: $test_description: skipped for $os" + return 0 +fi + +if ! test -x $RESIZE2FS_EXE -o ! -x $DEBUGFS_EXE; then + echo "$test_name: $test_description: skipped (no debugfs/resize2fs)" + return 0 +fi + +FSCK_OPT=-yf +OUT=$test_name.log +if [ -f $test_dir/expect.gz ]; then + EXP=$test_name.tmp + gunzip < $test_dir/expect.gz > $EXP1 +else + EXP=$test_dir/expect +fi + +dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 + +echo mke2fs -q -F -o Linux -b 1024 -i 1024 -E stride=8192 -t ext4 test.img 1024000 > $OUT +$MKE2FS -q -F -o Linux -b 1024 -i 1024 -E stride=8192 -t ext4 \ + $TMPFILE 1024000 >> $OUT 2>&1 + +echo resize2fs -p test.img 10240000 >> $OUT +$RESIZE2FS -p $TMPFILE 100000000 >> $OUT 2>&1 + +$FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1 +status=$? +echo Exit status is $status >> $OUT + +$DEBUGFS -R "set_super_value lastcheck 0" -w $TMPFILE >/dev/null 2>&1 +$DEBUGFS -R "set_super_value hash_seed null" -w $TMPFILE >/dev/null 2>&1 +$DEBUGFS -R "set_super_value mkfs_time 0" -w $TMPFILE >/dev/null 2>&1 +$TUNE2FS -c 20 -U clear $TMPFILE >/dev/null 2>&1 + +echo dumpe2fs -h test.img >> $OUT +$DUMPE2FS -h $TMPFILE >> $OUT 2>&1 +sed -f $cmd_dir/filter.sed -e '/Block bitmap.*$/N;s/\n Inode bitmap/, Inode bitmap/g' < $OUT > $OUT.new +mv $OUT.new $OUT +rm -f $TMPFILE + +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 + rm -f $test_name.tmp +fi + +unset IMAGE FSCK_OPT OUT EXP -- cgit v1.2.3