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 has_journal -T ext4 $TMPFILE 262144 > $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 echo "debugfs write journal" >> $OUT.new 22 echo "jo" > $TMPFILE.cmd 23 echo "jw -b 259-4356 /dev/zero" >> $TMPFILE.cmd 24 echo "jc" >> $TMPFILE.cmd 25 echo "jo" >> $TMPFILE.cmd 26 echo "jw -r 259-4356" >> $TMPFILE.cmd 27 echo "jc" >> $TMPFILE.cmd 28 $DEBUGFS -w -f $TMPFILE.cmd $TMPFILE 2>> $OUT.new > /dev/null 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 -f $TMPFILE.cmd $TMPFILE >> $OUT.new 2>&1 33 34 $FSCK -fy -N test_filesys $TMPFILE >> $OUT.new 2>&1 35 status=$? 36 echo Exit status is $status >> $OUT.new 37 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new > $OUT 38 rm -f $TMPFILE $TMPFILE.cmd $OUT.new 39 40 cmp -s $OUT $EXP 41 status=$? 42 43 if [ "$status" = 0 ] ; then 44 echo "$test_name: $test_description: ok" 45 touch $test_name.ok 46 else 47 echo "$test_name: $test_description: failed" 48 diff $DIFF_OPTS $EXP $OUT > $test_name.failed 49 rm -f $test_name.tmp 50 fi 51 52 unset IMAGE FSCK_OPT OUT EXP 53