Home | History | Annotate | Download | only in t_replay_and_set
      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 4096 -O has_journal,metadata_csum -T ext4 $TMPFILE 65536 > $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 bitmaps="$($DUMPE2FS $TMPFILE 2>&1 | grep 'bitmap at' | sed -e 's/^.*bitmap at \([0-9]*\).*$/\1/g' | tr '\n' ',')"
     22 
     23 echo "debugfs write journal" >> $OUT.new
     24 echo "jo" > $TMPFILE.cmd
     25 echo "jw -b $bitmaps /dev/zero" >> $TMPFILE.cmd
     26 echo "jc" >> $TMPFILE.cmd
     27 $DEBUGFS -w -f $TMPFILE.cmd $TMPFILE 2>> $OUT.new > /dev/null
     28 
     29 echo "set the label on a dirty-journal fs" >> $OUT.new
     30 $TUNE2FS -L testing $TMPFILE >> $OUT.new 2>&1
     31 
     32 echo "fsck the whole mess" >> $OUT.new
     33 $FSCK -fy -N test_filesys $TMPFILE >> $OUT.new 2>&1
     34 status=$?
     35 echo Exit status is $status >> $OUT.new
     36 sed -f $cmd_dir/filter.sed < $OUT.new > $OUT
     37 rm -f $TMPFILE $TMPFILE.cmd $OUT.new
     38 
     39 cmp -s $OUT $EXP
     40 status=$?
     41 
     42 if [ "$status" = 0 ] ; then
     43 	echo "$test_name: $test_description: ok"
     44 	touch $test_name.ok
     45 else
     46 	echo "$test_name: $test_description: failed"
     47 	diff $DIFF_OPTS $EXP $OUT > $test_name.failed
     48 	rm -f $test_name.tmp
     49 fi
     50 
     51 unset IMAGE FSCK_OPT OUT EXP
     52