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