Home | History | Annotate | Download | only in j_long_revoke_trans_mcsum_64bit
      1 if ! test -x $DEBUGFS_EXE; then
      2 	echo "$test_name: $test_description: skipped (no debugfs)"
      3 	return 0
      4 fi
      5 
      6 FSCK_OPT=-fy
      7 OUT=$test_name.log
      8 if [ -f $test_dir/expect.gz ]; then
      9 	EXP=$test_name.tmp
     10 	gunzip < $test_dir/expect.gz > $EXP1
     11 else
     12 	EXP=$test_dir/expect
     13 fi
     14 
     15 $MKE2FS -F -o Linux -b 1024 -O 64bit,has_journal,metadata_csum -T ext4 $TMPFILE 524288 > $OUT.new 2>&1
     16 
     17 $FSCK -fy -N test_filesys $TMPFILE >> $OUT.new 2>&1
     18 status=$?
     19 echo Exit status is $status >> $OUT.new
     20 
     21 $DUMPE2FS $TMPFILE 2>&1 | grep '^Journal features:' >> $OUT.new
     22 
     23 echo "debugfs write journal" >> $OUT.new
     24 echo "jo -c" > $TMPFILE.cmd
     25 echo "jw -b 262-4358 /dev/zero" >> $TMPFILE.cmd
     26 echo "jc" >> $TMPFILE.cmd
     27 echo "jo" >> $TMPFILE.cmd
     28 echo "jw -r 262-4358" >> $TMPFILE.cmd
     29 echo "jc" >> $TMPFILE.cmd
     30 $DEBUGFS -w -f $TMPFILE.cmd $TMPFILE 2>> $OUT.new > /dev/null
     31 
     32 $DUMPE2FS $TMPFILE 2>&1 | grep '^Journal features:' >> $OUT.new
     33 
     34 test -d "$JOURNAL_DUMP_DIR" -a -w "$JOURNAL_DUMP_DIR" && cp "$TMPFILE" "$JOURNAL_DUMP_DIR/$test_name.img"
     35 echo "logdump -c" > $TMPFILE.cmd
     36 $DEBUGFS -f $TMPFILE.cmd $TMPFILE >> $OUT.new 2>&1
     37 
     38 $FSCK -fy -N test_filesys $TMPFILE >> $OUT.new 2>&1
     39 status=$?
     40 echo Exit status is $status >> $OUT.new
     41 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new > $OUT
     42 rm -f $TMPFILE $TMPFILE.cmd $OUT.new
     43 
     44 cmp -s $OUT $EXP
     45 status=$?
     46 
     47 if [ "$status" = 0 ] ; then
     48 	echo "$test_name: $test_description: ok"
     49 	touch $test_name.ok
     50 else
     51 	echo "$test_name: $test_description: failed"
     52 	diff $DIFF_OPTS $EXP $OUT > $test_name.failed
     53 	rm -f $test_name.tmp
     54 fi
     55 
     56 unset IMAGE FSCK_OPT OUT EXP
     57