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.
30 lines
686 B
30 lines
686 B
test_description="test bg overhead calculation"
|
|
|
|
OUT=$test_name.log
|
|
EXP=$test_dir/expect
|
|
FS_SIZE=1024
|
|
MKE2FS_OPTS="-b 1024 -m 0 -g 256 -N 3745"
|
|
|
|
MKE2FS_SKIP_PROGRESS=true
|
|
MKE2FS_SKIP_CHECK_MSG=true
|
|
export MKE2FS_SKIP_PROGRESS MKE2FS_SKIP_CHECK_MSG
|
|
> $TMPFILE
|
|
|
|
$MKE2FS -F -o Linux $MKE2FS_OPTS $TMPFILE $FS_SIZE 2>&1 |
|
|
sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" > $OUT
|
|
|
|
rm -f $TMPFILE
|
|
|
|
cmp -s $OUT $EXP
|
|
status1=$?
|
|
|
|
if [ "$status1" = 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 OUT EXP DESCRIPTION FS_SIZE MKE2FS_OPTS MKE2FS_SKIP_PROGRESS
|