make sure the test shows any garbage output.
[xfstests-dev.git] / 004
1 #! /bin/sh
2 # FS QA Test No. 004
3 #
4 # exercise xfs_db bug #789674 and other freesp functionality
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=nathans@sgi.com
12
13 seq=`basename $0`
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=0
19
20 _cleanup()
21 {
22         umount $SCRATCH_MNT
23         rm -f $tmp.*
24         exit $status
25 }
26 trap "_cleanup" 0 1 2 3 15
27
28 _populate_scratch()
29 {
30         echo "=== mkfs output ===" >>$seq.full
31         _scratch_mkfs_xfs | tee -a $seq.full | _filter_mkfs 2>$tmp.mkfs
32         . $tmp.mkfs
33         _scratch_mount
34         dd if=/dev/zero of=$SCRATCH_MNT/foo count=200 bs=4096 >/dev/null 2>&1 &
35         dd if=/dev/zero of=$SCRATCH_MNT/goo count=400 bs=4096 >/dev/null 2>&1 &
36         dd if=/dev/zero of=$SCRATCH_MNT/moo count=800 bs=4096 >/dev/null 2>&1 &
37         wait
38         umount $SCRATCH_MNT                     # flush everything
39         _scratch_mount                          # and then remount
40 }
41
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46
47 # real QA test starts here
48 _supported_fs xfs
49 _supported_os IRIX Linux
50
51 _need_to_be_root
52 _require_scratch
53 _require_nobigloopfs
54
55 rm -f $seq.full
56
57 _populate_scratch
58
59 [ "$HOSTOS" = "Linux" ] && DF_PROG="$DF_PROG -P --block-size=512"
60
61 eval `$DF_PROG $SCRATCH_MNT 2>&1 \
62         | tail -1 | $AWK_PROG '{ printf "blocks=%u used=%u avail=%u\n", $3, $4, $5 }'`
63 echo "df gave: blocks=$blocks used=$used avail=$avail" >>$seq.full
64 echo "blocksize from mkfs is '$dbsize'" >>$seq.full
65
66 xfs_db -r -c "freesp -s" $SCRATCH_DEV >$tmp.xfs_db
67 echo "xfs_db for $SCRATCH_DEV" >>$seq.full
68 cat $tmp.xfs_db >>$seq.full
69
70 eval `$XFS_IO_PROG -x -c resblks $SCRATCH_MNT 2>&1 \
71         | $AWK_PROG '/available/ { printf "resblks=%u\n", $5 }'`
72 echo "resblks gave: resblks=$resblks" >>$seq.full
73
74 # check the 'blocks' field from freesp command is OK
75 # since 2.6.18, df does not report the 4 blocks per AG that cannot
76 # be allocated, hence we check for that exact mismatch.
77 # since ~2.6.22, reserved blocks are used by default and df does
78 # not report them, hence check for an exact mismatch.
79 perl -ne '
80         BEGIN   { $avail ='$avail' * 512;
81                   $answer="(no xfs_db free blocks line?)" }
82         /free blocks (\d+)$/    || next;
83         $freesp = $1 * '$dbsize';
84         if ($freesp == $avail) {
85                 $answer = "yes";
86         } else {
87                 $avail = $avail + (('$agcount' + 1) * '$dbsize' * 4);
88                 if ($freesp == $avail) {
89                         $answer = "yes";
90                 } else {
91                         $avail = $avail + ('$resblks' * '$dbsize');
92                         if ($freesp == $avail) {
93                                 $answer = "yes";
94                         } else {
95                                 $answer = "no ($freesp != $avail)";
96                         }
97                 }
98         }
99         END     { print "$answer\n" }
100         ' <$tmp.xfs_db >$tmp.ans
101 ans="`cat $tmp.ans`"
102 echo "Checking blocks column same as df: $ans"
103 if [ "$ans" != yes ]
104 then
105         echo "Error: $SCRATCH_DEV: freesp mismatch: $ans"
106         echo "xfs_db output ..."
107         cat $tmp.xfs_db
108         status=1
109 fi
110
111 # check the 'pct' field from freesp command is good
112 perl -ne '
113             BEGIN       { $percent = 0; }
114             /free/      && next;        # skip over free extent size number
115             if (/\s+(\d+\.\d+)$/) {
116                 $percent += $1;
117             }
118             END { $percent += 0.5; print int($percent), "\n" }  # round up
119 ' <$tmp.xfs_db >$tmp.ans
120 ans="`cat $tmp.ans`"
121 echo "Checking percent column yields 100: $ans"
122 if [ "$ans" != 100 ]
123 then
124         echo "Error: $SCRATCH_DEV: pct mismatch: $ans (expected 100)"
125         echo "xfs_db output ..."
126         cat $tmp.xfs_db
127         status=1
128 fi
129
130 exit