summaryrefslogtreecommitdiffstats
path: root/tests/m_mkfs_overhead/script
blob: 3606fa2b88a3aeb8bfcd605d07b850fff11eb3af (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
27
28
29
test_description="test bg overhead calculation"

OUT=$test_name.log
EXP=$test_dir/expect
FS_SIZE=1024
MKE2FS_OPTS="-o hurd -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