1 if test -x $DEBUGFS_EXE; then 2 3 FSCK_OPT=-yf 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 dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 15 16 echo mke2fs -q -F -o Linux -b 1024 -g 256 -O inline_data,extents -I 256 test.img 1024 >> $OUT 17 $MKE2FS -q -F -o Linux -b 1024 -g 256 -O inline_data,extents -I 256 $TMPFILE 1024 2>&1 | 18 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" >> $OUT 19 20 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 21 status=$? 22 echo Exit status is $status >> $OUT.new 23 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT 24 rm -f $OUT.new 25 26 for i in 30 70 500 1023 1024 1500; do 27 echo "debugfs -R \"symlink /l_$i /$(perl -e "print 'x' x $i;")\" test.img" >> $OUT 28 $DEBUGFS -w -R "symlink /l_$i /$(perl -e "print 'x' x $i;")" $TMPFILE \ 29 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT 30 done 31 32 for i in 30 70 500 1023 1024 1500; do 33 echo "debugfs -R \"stat /l_$i\" test.img" >> $OUT 34 $DEBUGFS -R "stat /l_$i" $TMPFILE 2>&1 | \ 35 sed -f $cmd_dir/filter.sed | grep -v "time: " >> $OUT 36 done 37 38 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 39 status=$? 40 echo Exit status is $status >> $OUT.new 41 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT 42 rm -f $OUT.new 43 44 rm -f $TMPFILE 45 46 cmp -s $OUT $EXP 47 status=$? 48 49 if [ "$status" = 0 ] ; then 50 echo "$test_name: $test_description: ok" 51 touch $test_name.ok 52 else 53 echo "$test_name: $test_description: failed" 54 diff $DIFF_OPTS $EXP $OUT > $test_name.failed 55 rm -f $test_name.tmp 56 fi 57 58 unset IMAGE FSCK_OPT OUT EXP 59 60 else #if test -a -x $DEBUGFS_EXE; then 61 echo "$test_name: $test_description: skipped" 62 fi 63