xfstests: cleanup duplicates in all tests
[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
57 bitsperlong=`src/feature -w`
58 if [ "$bitsperlong" -ne 64 ]; then
59         _notrun "This test is only valid on 64 bit machines"
60 fi
61
62 rm -f $seqres.full
63
64 tmpfile=$TEST_DIR/fsfile.$$
65 tmpdir=$TEST_DIR/tmpdir.$$
66
67 mkdir -p $tmpdir || _fail "!!! failed to create temp mount dir"
68
69 # Create a file w/ the offset we wish to resize to
70 echo "=== truncate file ==="
71 dd if=/dev/zero of=$tmpfile bs=1 seek=19998630180864 count=1 >/dev/null 2>&1 \
72         || _fail "!!! failed to truncate loopback file to correct size"
73
74 # mkfs slightly smaller than that
75 echo "=== mkfs.xfs ==="
76 mkfs.xfs -f -bsize=4096 -dagsize=76288719b,size=3905982455b -llazy-count=0 $tmpfile \
77         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
78                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
79                 -e "s/, projid32bit=[0-9]//" \
80                 -e "/.*crc=/d"
81
82 mount -o loop $tmpfile $tmpdir || _fail "!!! failed to loopback mount"
83
84 # see what happens when we growfs it
85 echo "=== xfs_growfs ==="
86 xfs_growfs $tmpdir \
87         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
88                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
89                 -e "/.*crc=/d"
90
91 # and double-check the new geometry
92 echo "=== xfs_info ==="
93 xfs_info $tmpdir \
94         | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
95                 -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
96                 -e "/.*crc=/d"
97
98 # _cleanup cleans up for us
99
100 # success, all done
101 status=0
102 exit
103