You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
660 B
27 lines
660 B
test_description="e2image corrupt fs"
|
|
|
|
IMAGE=$test_dir/image.gz
|
|
OUT=$test_name.log
|
|
EXP=$test_dir/expect
|
|
|
|
gzip -d < $IMAGE > $TMPFILE
|
|
$E2IMAGE -r $TMPFILE $TMPFILE.bin > $OUT 2>&1
|
|
$FSCK -fn $TMPFILE.bin >> $OUT 2>&1
|
|
|
|
sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test_filesys;" $OUT > $OUT.new
|
|
mv $OUT.new $OUT
|
|
|
|
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
|
|
rm -f $test_name.tmp
|
|
fi
|
|
|
|
rm -f $OUT $TMPFILE $TMPFILE.bin $TMPFILE.test
|
|
unset IMAGE FSCK_OPT OUT EXP
|