1 if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then 2 3 FSCK_OPT=-fn 4 OUT=$test_name.log 5 EXP=$test_dir/expect 6 CONF=$TMPFILE.conf 7 8 #gzip -d < $EXP.gz > $EXP 9 10 cat > $CONF << ENDL 11 [fs_types] 12 ext4h = { 13 features = has_journal,extent,huge_file,uninit_bg,dir_nlink,extra_isize,sparse_super,filetype,dir_index,ext_attr,^resize_inode,^meta_bg,^flex_bg 14 blocksize = 1024 15 inode_size = 256 16 make_hugefiles = true 17 hugefiles_dir = / 18 hugefiles_slack = 0 19 hugefiles_name = aaaaa 20 hugefiles_digits = 4 21 hugefiles_size = 1M 22 zero_hugefiles = false 23 } 24 ENDL 25 26 echo "resize2fs test" > $OUT 27 28 MKE2FS_CONFIG=$CONF $MKE2FS -F -T ext4h $TMPFILE 786432 >> $OUT 2>&1 29 rm -rf $CONF 30 31 # check 32 $FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1 33 status=$? 34 echo Exit status is $status >> $OUT 35 36 # convert it 37 echo "resize2fs -b test.img" >> $OUT 38 $RESIZE2FS -b -f $TMPFILE 2>&1 >> $OUT 2>&1 39 $DUMPE2FS -g $TMPFILE 2>&1 >> $OUT.before 2> /dev/null 40 41 # grow it 42 echo "resize2fs test.img" >> $OUT 43 dd if=/dev/zero of=$TMPFILE conv=notrunc bs=1 count=1 seek=1207959552 2> /dev/null 44 $RESIZE2FS -f $TMPFILE 2>&1 >> $OUT 2>&1 45 status=$? 46 echo Exit status is $status >> $OUT 47 48 # dump and check 49 $DUMPE2FS -g $TMPFILE 2>&1 >> $OUT.after 2> /dev/null 50 echo "Change in FS metadata:" >> $OUT 51 diff -u $OUT.before $OUT.after | tail -n +3 >> $OUT 52 $FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1 53 status=$? 54 echo Exit status is $status >> $OUT 55 56 rm $TMPFILE 57 58 # 59 # Do the verification 60 # 61 62 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" -e 's/test_filesys:.*//g' < $OUT > $OUT.new 63 mv $OUT.new $OUT 64 65 cmp -s $OUT $EXP 66 status=$? 67 68 if [ "$status" = 0 ] ; then 69 echo "$test_name: $test_description: ok" 70 touch $test_name.ok 71 else 72 echo "$test_name: $test_description: failed" 73 diff $DIFF_OPTS $EXP $OUT > $test_name.failed 74 fi 75 76 rm $OUT.before $OUT.after 77 78 unset IMAGE FSCK_OPT OUT EXP CONF 79 80 else #if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then 81 echo "$test_name: $test_description: skipped" 82 fi 83 84