Fix test 071 upper bound for 64 bit platforms
[xfstests-dev.git] / 041
1 #! /bin/sh
2 # XFS 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 modify it
11 # under the terms of version 2 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, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 set +x
40 # creator
41 owner=ajag@sgi.com
42
43 seq=`basename $0`
44 echo "QA output created by $seq"
45
46 here=`pwd`
47 tmp=/tmp/$$
48 status=1        # failure is the default!
49
50 _cleanup()
51 {
52     umount $SCRATCH_MNT
53     rm -f $tmp.*
54 }
55 trap "_cleanup ; exit \$status" 0 1 2 3 15
56
57 # get standard environment, filters and checks
58 . ./common.rc
59 . ./common.filter
60
61 # real QA test starts here
62
63 _require_scratch
64
65 _fill()
66 {
67     if [ $# -ne 1 ]; then echo "Usage: _fill \"path\"" 1>&2 ; exit 1; fi
68     _do "Fill filesystem" \
69         "src/fill2fs --verbose --dir=$1 --seed=0 --filesize=65536 --stddev=32768 --list=- >>$tmp.manifest"
70 }
71
72 _do_die_on_error=message_only
73 rm -f $seq.full
74 #agsize=16
75 agsize=32
76 echo -n "Make $agsize megabyte filesystem on SCRATCH_DEV and mount... "
77 _do "_scratch_mkfs_xfs -dsize=${agsize}m,agcount=1"
78 _do "_scratch_mount"
79 echo "done"
80
81 # full allocation group -> partial; partial -> expand partial + new partial;
82 # partial -> expand partial; partial -> full
83 # 17 -> 33 -> 35 -> 48 megabytes, converted to fs blocks below
84 # for size in 4352 8448 8960 12288
85 # 33 -> 67 -> 75 -> 96 converted to fs blocks:
86 for size in 8448 17512 19200 24576
87 do
88     _fill $SCRATCH_MNT/fill_$size
89     _do "Grow filesystem to $size blocks" "xfs_growfs -D ${size} $SCRATCH_MNT"
90     echo -n "Flush filesystem... "
91     _do "umount $SCRATCH_MNT"
92     _do "_scratch_mount"
93     echo "done"
94     echo -n "Check files... "
95     if ! _do "src/fill2fs_check $tmp.manifest"; then
96       echo "fail (see $seq.full)"
97       _do "cat $tmp.manifest"
98       _do "ls -altrR $SCRATCH_MNT"
99       _do "dd if=$SCRATCH_DEV bs=4096 count=$size | gzip -9 > $seq.fsimage.gz"
100       status=1 ; exit
101     fi
102     echo "done"
103 done
104
105 # success, all done
106 echo "Growfs tests passed."
107 status=0 ; exit