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 46eval $PREP_CMD 47 48echo 'ex /a' > $TMPFILE.cmd 49$DEBUGFS -f $TMPFILE.cmd $TMPFILE > $OUT1.new 2>&1 50$FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT1.new 2>&1 51status=$? 52echo Exit status is $status >> $OUT1.new 53sed -f $cmd_dir/filter.sed $OUT1.new > $OUT1 54 55if [ "$ONE_PASS_ONLY" != "true" ]; then 56 $FSCK $SECOND_FSCK_OPT -N test_filesys $TMPFILE > $OUT2.new 2>&1 57 status=$? 58 echo Exit status is $status >> $OUT2.new 59 echo 'ex /a' > $TMPFILE.cmd 60 $DEBUGFS -f $TMPFILE.cmd $TMPFILE >> $OUT2.new 2>&1 61 sed -f $cmd_dir/filter.sed $OUT2.new > $OUT2 62fi 63rm -f $TMPFILE.cmd $OUT1.new $OUT2.new 64 65eval $AFTER_CMD 66 67if [ "$SKIP_VERIFY" != "true" ] ; then 68 rm -f $test_name.ok $test_name.failed 69 cmp -s $OUT1 $EXP1 70 status1=$? 71 if [ "$ONE_PASS_ONLY" != "true" ]; then 72 cmp -s $OUT2 $EXP2 73 status2=$? 74 else 75 status2=0 76 fi 77 if [ "$PASS_ZERO" = "true" ]; then 78 cmp -s $test_name.0.log $test_dir/expect.0 79 status3=$? 80 else 81 status3=0 82 fi 83 84 if [ -z "$test_description" ] ; then 85 description="$test_name" 86 else 87 description="$test_name: $test_description" 88 fi 89 90 if [ "$status1" -eq 0 -a "$status2" -eq 0 -a "$status3" -eq 0 ] ; then 91 echo "$description: ok" 92 touch $test_name.ok 93 else 94 echo "$description: failed" 95 rm -f $test_name.failed 96 if [ "$PASS_ZERO" = "true" ]; then 97 diff $DIFF_OPTS $test_dir/expect.0 \ 98 $test_name.0.log >> $test_name.failed 99 fi 100 diff $DIFF_OPTS $EXP1 $OUT1 >> $test_name.failed 101 if [ "$ONE_PASS_ONLY" != "true" ]; then 102 diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed 103 fi 104 fi 105 rm -f tmp_expect 106fi 107 108if [ "$SKIP_CLEANUP" != "true" ] ; then 109 unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2 110 unset SKIP_VERIFY SKIP_CLEANUP SKIP_GUNZIP ONE_PASS_ONLY PREP_CMD 111 unset DESCRIPTION SKIP_UNLINK AFTER_CMD PASS_ZERO 112fi 113 114