summaryrefslogtreecommitdiffstats
path: root/tests/i_bad_csum/script
blob: 8b5bef97c2f110501a37407fbad3b233fae099e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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