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