xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 078
1 #! /bin/bash
2 # FS QA Test No. 078
3 #
4 # Check several growfs corner cases
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003,2006 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1
32
33 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39     umount -d $LOOP_MNT 2>/dev/null
40     rmdir $LOOP_MNT
41     _cleanup_testdir
42 }
43
44 # get standard environment, filters and checks
45 . ./common/rc
46 . ./common/filter
47
48 # loop devices are available in Linux only
49 _supported_fs xfs
50 _supported_os Linux
51
52 # Must have loop device
53 _require_loop
54
55 LOOP_IMG=$TEST_DIR/$seq.fs
56 LOOP_MNT=$TEST_DIR/$seq.mnt
57
58 _filter_io()
59 {
60         sed -e '/.* ops; /d'
61 }
62
63 # real QA test starts here
64
65 echo "*** create loop mount point"
66 rmdir $LOOP_MNT 2>/dev/null
67 mkdir -p $LOOP_MNT || _fail "cannot create loopback mount point"
68
69 _grow_loop()
70 {
71         original=$1
72         new_size=$2
73         bsize=$3
74         check=$4
75         agsize=$5
76
77         dparam="file,name=$LOOP_IMG,size=$original"
78         if [ -n "$agsize" ]; then
79                 dparam="$dparam,agsize=$agsize"
80         fi
81
82         echo
83         echo "=== GROWFS (from $original to $new_size, $bsize blocksize)"
84         echo
85
86         echo "*** mkfs loop file (size=$original)"
87         $MKFS_XFS_PROG -b size=$bsize -d $dparam \
88                 | _filter_mkfs 2>/dev/null
89
90         echo "*** extend loop file"
91         $XFS_IO_PROG -c "pwrite $new_size $bsize" $LOOP_IMG | _filter_io
92         echo "*** mount loop filesystem"
93         mount -t xfs -o loop $LOOP_IMG $LOOP_MNT
94
95         echo "*** grow loop filesystem"
96         #xfs_growfs $LOOP_MNT 2>&1 | grep -e "^data" #| _filter_growfs 2>/dev/null
97         $XFS_GROWFS_PROG $LOOP_MNT 2>&1 |  _filter_growfs 2>&1
98
99         echo "*** unmount"
100         umount -d $LOOP_MNT > /dev/null 2>&1
101
102         # Large grows takes forever to check..
103         if [ "$check" -gt "0" ]
104         then
105                 echo "*** check"
106                 LOOP_DEV=`losetup -f`
107                 losetup $LOOP_DEV $LOOP_IMG
108                  _check_xfs_filesystem $LOOP_DEV none none
109                 losetup -d $LOOP_DEV
110         fi
111
112         rm -f $LOOP_IMG
113 }
114
115 # Wes' problem sizes...
116 _grow_loop 168024b 1376452608 4096 1
117
118 # Some other blocksize cases...
119 _grow_loop 168024b 1376452608 2048 1
120 _grow_loop 168024b 1376452608 512 1 16m
121 _grow_loop 168024b 688230400 1024 1
122
123 # Other corner cases suggested by dgc
124 # also the following doesn't check if the filesystem is consistent.
125 #  - grow 1TB by 1.5TB (control)
126 _grow_loop 1t 2500g 4096 0
127
128 #  - grow 1TB by 2.5TB (grow by > 2TB)
129 _grow_loop 1t 3500g 4096 0
130
131 #  - grow 1TB by 3.5TB (grow past 4TB)
132 _grow_loop 1t 4500g 4096 0
133
134 #  - grow 1TB by 4.5TB (grow by > 4TB)
135 _grow_loop 1t 5500g 4096 0
136
137 #  - grow 1TB by 7.5TB (grow past 8TB)
138 _grow_loop 1t 8500g 4096 0
139
140 #  - grow 1TB by 8.5TB (grow by > 8TB)
141 _grow_loop 1t 9500g 4096 0
142
143 #  - grow 1TB by 14.5TB (grow by > 8TB)
144 _grow_loop 1t 15500g 4096 0
145
146 #  - grow 1TB by 15TB (grow to 16TB)
147 _grow_loop 1t 16000g 4096 0
148
149 # It would be nice to go on, but this would require a totally new test in order
150 # to take care of 64-bit machines.
151
152 echo "*** all done"
153 status=0
154 exit