xfstests: remove stale machine configs
[xfstests-dev.git] / 041
1 #! /bin/bash
2 # FS QA Test No. 041
3 #
4 # growfs QA tests - repeatedly fill/grow the filesystem
5 # check the filesystem contents after each operation
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 set +x
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33
34 _cleanup()
35 {
36     cd /
37     umount $SCRATCH_MNT
38     rm -f $tmp.*
39 }
40 trap "_cleanup ; exit \$status" 0 1 2 3 15
41
42 # get standard environment, filters and checks
43 . ./common.rc
44 . ./common.filter
45
46 # real QA test starts here
47 _supported_fs xfs
48 _supported_os IRIX Linux
49
50 _require_scratch
51 _require_no_large_scratch_dev
52 umount $SCRATCH_DEV 2>/dev/null
53
54 _fill()
55 {
56     if [ $# -ne 1 ]; then echo "Usage: _fill \"path\"" 1>&2 ; exit 1; fi
57     _do "Fill filesystem" \
58         "src/fill2fs --verbose --dir=$1 --seed=0 --filesize=65536 --stddev=32768 --list=- >>$tmp.manifest"
59 }
60
61 _do_die_on_error=message_only
62 rm -f $seq.full
63 agsize=32
64 echo -n "Make $agsize megabyte filesystem on SCRATCH_DEV and mount... "
65 _scratch_mkfs_xfs -dsize=${agsize}m,agcount=1 2>&1 >/dev/null || _fail "mkfs failed"
66 bsize=`_scratch_mkfs_xfs -dsize=${agsize}m,agcount=1 2>&1 | _filter_mkfs 2>&1 \
67                 | perl -ne 'if (/dbsize=(\d+)/) {print $1;}'`
68 onemeginblocks=`expr 1048576 / $bsize`
69 _scratch_mount || _fail "mount failed"
70
71 echo "done"
72
73 # full allocation group -> partial; partial -> expand partial + new partial;
74 # partial -> expand partial; partial -> full
75 # cycle through 33m -> 67m -> 75m -> 96m
76 for size in 33 67 75 96
77 do
78     grow_size=`expr $size \* $onemeginblocks`
79     _fill $SCRATCH_MNT/fill_$size
80     _do "Grow filesystem to ${size}m" "xfs_growfs -D $grow_size $SCRATCH_MNT"
81     echo -n "Flush filesystem... "
82     _do "umount $SCRATCH_MNT"
83     _do "_scratch_mount"
84     echo "done"
85     echo -n "Check files... "
86     if ! _do "src/fill2fs_check $tmp.manifest"; then
87       echo "fail (see $seq.full)"
88       _do "cat $tmp.manifest"
89       _do "ls -altrR $SCRATCH_MNT"
90       _do "dd if=$SCRATCH_DEV bs=4096 count=$grow_size | gzip -9 > $seq.fsimage.gz"
91       status=1 ; exit
92     fi
93     echo "done"
94 done
95
96 # success, all done
97 echo "Growfs tests passed."
98 status=0 ; exit