Whamcloud - gitweb
acdf5670c5004b83fabf25a15a81d25445d8971f
[tools/e2fsprogs.git] / tests / f_orphquot / script
1 test_description="e2fsck with quota and orphan inodes"
2 OUT=$test_name.log
3 EXP=$test_dir/expect
4
5 bzip2 -dc < $test_dir/image.bz2 > $TMPFILE
6
7 rm -rf $OUT
8 $FSCK -f -y -N test_filesystem $TMPFILE > $OUT.new 2>&1
9 status=$?
10 echo Exit status is $status >> $OUT.new
11 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
12 rm -f $OUT.new
13
14 cmp -s $OUT $EXP
15 status=$?
16
17 if [ "$status" = 0 ] ; then
18         echo "$test_name: $test_description: ok"
19         touch $test_name.ok
20 else
21         echo "$test_name: $test_description: failed"
22         diff $DIFF_OPTS $EXP $OUT > $test_name.failed
23         rm -f tmp_expect
24 fi
25
26 unset IMAGE FSCK_OPT OUT EXP