blob: beb6cf9c9a73a8ed17c315833b0ac4ab47ce2767 [file] [log] [blame]
if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
IMAGE=$test_dir/image.gz
FSCK_OPT=-yf
OUT=$test_name.log
EXP=$test_dir/expect
gunzip < $IMAGE > $TMPFILE
echo "resize2fs test" > $OUT
echo "resize2fs -M test.img" >> $OUT
$RESIZE2FS -M $TMPFILE 2>&1 >> $OUT.new 2>&1
status=$?
echo Exit status is $status >> $OUT.new
echo " " >> $OUT.new
echo fsck $FSCK_OPT -N test_filesys test.img >> $OUT.new
$FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
echo Exit status is $status >> $OUT.new
sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT
rm $TMPFILE $OUT.new
#
# Do the verification
#
cmp -s $OUT $EXP
status=$?
if [ "$status" = 0 ] ; then
echo "$test_name: $test_description: ok"
touch $test_name.ok
else
echo "$test_name: $test_description: failed"
diff $DIFF_OPTS $EXP $OUT > $test_name.failed
fi
unset IMAGE FSCK_OPT OUT EXP
else #if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
echo "$test_name: $test_description: skipped"
fi