1test_description="e2undo with resize2fs -z" 2if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then 3 4TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo 5OUT=$test_name.log 6rm -f $TDB_FILE >/dev/null 2>&1 7 8dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 9 10echo mke2fs -q -F -o Linux -T ext4 -O ^metadata_csum,64bit -E lazy_itable_init=1 -b 1024 $TMPFILE 256 > $OUT 11$MKE2FS -q -F -o Linux -T ext4 -O ^metadata_csum,64bit -E lazy_itable_init=1 -b 1024 $TMPFILE 256 >> $OUT 2>&1 12crc0=`$CRCSUM $TMPFILE` 13echo $CRCSUM before resize2fs $crc0 >> $OUT 14 15echo using resize2fs to test e2undo >> $OUT 16$RESIZE2FS -z $TDB_FILE $TMPFILE 512 >> $OUT 2>&1 17crc1=`$CRCSUM $TMPFILE` 18echo $CRCSUM after resize2fs $crc1 >> $OUT 19 20$E2UNDO $TDB_FILE $TMPFILE >> $OUT 2>&1 21crc2=`$CRCSUM $TMPFILE` 22echo $CRCSUM after e2undo $crc2 >> $OUT 23 24if [ $crc0 = $crc2 ] && [ $crc1 != $crc2 ]; then 25 echo "$test_name: $test_description: ok" 26 touch $test_name.ok 27else 28 ln -f $test_name.log $test_name.failed 29 echo "$test_name: $test_description: failed" 30fi 31rm -f $TDB_FILE $TMPFILE 32fi 33