config: make sure tests check for loop device support
[xfstests-dev.git] / tests / xfs / 206
1 #! /bin/bash
2 # FS QA Test No. 206
3 #
4 # Test trim of last small AG for large filesystem resizes
5 #
6 # As reported at
7 # http://article.gmane.org/gmane.comp.file-systems.xfs.general/29187
8 # this trimming may cause an overflow in the new size calculation.
9 # Patch and testcase at
10 # http://article.gmane.org/gmane.comp.file-systems.xfs.general/29193
11 #
12 #-----------------------------------------------------------------------
13 # Copyright (c) 2009 Eric Sandeen.
14 #
15 # This program is free software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License as
17 # published by the Free Software Foundation.
18 #
19 # This program is distributed in the hope that it would be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 # GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write the Free Software Foundation,
26 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
27 #-----------------------------------------------------------------------
28 #
29
30 seq=`basename $0`
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1        # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 _cleanup()
40 {
41     umount $tmpdir
42     rmdir $tmpdir
43     rm -f $tmp
44     rm -f $tmpfile
45 }
46
47 # get standard environment, filters and checks
48 . ./common/rc
49 . ./common/filter
50
51 # real QA test starts here
52
53 # Modify as appropriate.
54 _supported_fs xfs
55 _supported_os IRIX Linux
56 _require_loop
57
58 bitsperlong=`src/feature -w`
59 if [ "$bitsperlong" -ne 64 ]; then
60         _notrun "This test is only valid on 64 bit machines"
61 fi
62
63 rm -f $seqres.full
64
65 tmpfile=$TEST_DIR/fsfile.$$
66 tmpdir=$TEST_DIR/tmpdir.$$
67
68 mkdir -p $tmpdir || _fail "!!! failed to create temp mount dir"
69
70 # Create a file w/ the offset we wish to resize to
71 echo "=== truncate file ==="
72 dd if=/dev/zero of=$tmpfile bs=1 seek=19998630180864 count=1 >/dev/null 2>&1 \
73         || _fail "!!! failed to truncate loopback file to correct size"
74
75 # mkfs slightly smaller than that
76 echo "=== mkfs.xfs ==="
77 mkfs.xfs -f -bsize=4096 -dagsize=76288719b,size=3905982455b -llazy-count=0 $tmpfile \
78         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
79                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
80                 -e "s/, projid32bit=[0-9]//" \
81                 -e "s/ ftype=[0-9]//" \
82                 -e "/.*crc=/d"
83
84 mount -o loop $tmpfile $tmpdir || _fail "!!! failed to loopback mount"
85
86 # see what happens when we growfs it
87 echo "=== xfs_growfs ==="
88 xfs_growfs $tmpdir \
89         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
90                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
91                 -e "s/, projid32bit=[0-9]//" \
92                 -e "s/ ftype=[0-9]//" \
93                 -e "/.*crc=/d"
94
95 # and double-check the new geometry
96 echo "=== xfs_info ==="
97 xfs_info $tmpdir \
98         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
99                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
100                 -e "s/, projid32bit=[0-9]//" \
101                 -e "s/ ftype=[0-9]//" \
102                 -e "/.*crc=/d"
103
104 # _cleanup cleans up for us
105
106 # success, all done
107 status=0
108 exit
109