1if [ "$DESCRIPTION"x != x ]; then 2 test_description="$DESCRIPTION" 3fi 4if [ "$IMAGE"x = x ]; then 5 IMAGE=$test_dir/image.gz 6fi 7 8if [ "$FSCK_OPT"x = x ]; then 9 FSCK_OPT=-yf 10fi 11 12if [ "$SECOND_FSCK_OPT"x = x ]; then 13 SECOND_FSCK_OPT=-yf 14fi 15 16if [ "$OUT1"x = x ]; then 17 OUT1=$test_name.1.log 18fi 19 20if [ "$OUT2"x = x ]; then 21 OUT2=$test_name.2.log 22fi 23 24if [ "$EXP1"x = x ]; then 25 if [ -f $test_dir/expect.1.gz ]; then 26 EXP1=$test_name.1.tmp 27 gunzip < $test_dir/expect.1.gz > $EXP1 28 else 29 EXP1=$test_dir/expect.1 30 fi 31fi 32 33if [ "$EXP2"x = x ]; then 34 if [ -f $test_dir/expect.2.gz ]; then 35 EXP2=$test_name.2.tmp 36 gunzip < $test_dir/expect.2.gz > $EXP2 37 else 38 EXP2=$test_dir/expect.2 39 fi 40fi 41 42if [ "$SKIP_GUNZIP" != "true" ] ; then 43 gunzip < $IMAGE > $TMPFILE 44fi 45 46cp /dev/null $OUT1 47 48eval $PREP_CMD 49 50echo 'stat /realmode.bin' > $TMPFILE.cmd 51$DEBUGFS -f $TMPFILE.cmd $TMPFILE > $OUT1.new 2>&1 52rm -f $TMPFILE.cmd 53$TUNE2FS -O extent $TMPFILE >> $OUT1.new 2>&1 54$FSCK $FSCK_OPT -E bmap2extent -N test_filesys $TMPFILE >> $OUT1.new 2>&1 55status=$? 56echo Exit status is $status >> $OUT1.new 57sed -f $cmd_dir/filter.sed $OUT1.new > $OUT1 58 59$FSCK $SECOND_FSCK_OPT -N test_filesys $TMPFILE > $OUT2.new 2>&1 60status=$? 61echo Exit status is $status >> $OUT2.new 62echo 'ex /realmode.bin' > $TMPFILE.cmd 63$DEBUGFS -f $TMPFILE.cmd $TMPFILE >> $OUT2.new 2>&1 64sed -f $cmd_dir/filter.sed $OUT2.new > $OUT2 65rm -f $TMPFILE.cmd $OUT1.new $OUT2.new 66 67eval $AFTER_CMD 68 69if [ "$SKIP_VERIFY" != "true" ] ; then 70 rm -f $test_name.ok $test_name.failed 71 cmp -s $OUT1 $EXP1 72 status1=$? 73 if [ "$ONE_PASS_ONLY" != "true" ]; then 74 cmp -s $OUT2 $EXP2 75 status2=$? 76 else 77 status2=0 78 fi 79 if [ "$PASS_ZERO" = "true" ]; then 80 cmp -s $test_name.0.log $test_dir/expect.0 81 status3=$? 82 else 83 status3=0 84 fi 85 86 if [ -z "$test_description" ] ; then 87 description="$test_name" 88 else 89 description="$test_name: $test_description" 90 fi 91 92 if [ "$status1" -eq 0 -a "$status2" -eq 0 -a "$status3" -eq 0 ] ; then 93 echo "$description: ok" 94 touch $test_name.ok 95 else 96 echo "$description: failed" 97 rm -f $test_name.failed 98 if [ "$PASS_ZERO" = "true" ]; then 99 diff $DIFF_OPTS $test_dir/expect.0 \ 100 $test_name.0.log >> $test_name.failed 101 fi 102 diff $DIFF_OPTS $EXP1 $OUT1 >> $test_name.failed 103 if [ "$ONE_PASS_ONLY" != "true" ]; then 104 diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed 105 fi 106 fi 107 rm -f tmp_expect 108fi 109 110if [ "$SKIP_CLEANUP" != "true" ] ; then 111 unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2 112 unset SKIP_VERIFY SKIP_CLEANUP SKIP_GUNZIP ONE_PASS_ONLY PREP_CMD 113 unset DESCRIPTION SKIP_UNLINK AFTER_CMD PASS_ZERO 114fi 115 116