No Message Supplied
[xfstests-dev.git] / 009
1 #! /bin/sh
2 # XFS QA Test No. 009
3 # $Id: 1.1 $
4 #
5 # alloc test
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 # creator
40 owner=dxm@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "_cleanup; exit \$status" 0 1 2 3 15
49 bsize=`$here/src/getpagesize`
50
51 _cleanup()
52 {
53     echo "*** unmount"
54     umount $SCRATCH_MNT
55 }
56
57 _block_filter()
58 {
59    sed \
60         -e 's/[0-9][0-9]*\.\.[0-9][0-9]*/BLOCKRANGE/g' \
61         -e "s/blocksize $bsize/blocksize BSIZE/g"
62 }
63
64 _init()
65 {
66     echo "*** mkfs"
67     if ! mkfs_xfs $SCRATCH_DEV >$tmp.out 2>&1
68     then
69         cat $tmp.out
70         echo "failed to mkfs $SCRATCH_DEV"
71         exit 1
72     fi
73
74     echo "*** mount"
75     if ! mount $SCRATCH_DEV $SCRATCH_MNT -t xfs
76     then
77         echo "failed to mount $SCRATCH_DEV"
78         exit 1
79     fi
80 }
81
82 _filesize()
83 {
84     ls -l $1 | $AWK_PROG '{print "filesize = " $5}'
85 }
86
87 # get standard environment, filters and checks
88 . ./common.rc
89 . ./common.filter
90
91 # real QA test starts here
92
93 _require_scratch
94
95 _init
96 out=$SCRATCH_MNT/$$.tmp
97
98 # since we're using a clean FS here, we make some assumptions
99 # about availability of contiguous blocks
100
101 # also interesting to note is that ALLOC == FREE. seriously.
102 # the _length is ignored_ in irix. the file is allocated up
103 # to the specified offset, and zero filled if previously
104 # unallocated. the file is truncated at the specified point.
105
106 echo "*** test 1 - reservations cleared on O_TRUNC"
107 rm -f $out
108 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
109 r 0 1000b
110 m
111 EOF
112 _filesize $out
113
114 cat <<EOF | src/alloc -n -b $bsize -f $out -t | _block_filter
115 m
116 EOF
117 _filesize $out
118
119 echo "*** test 2 - reserve & filesize"
120 rm -f $out
121 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
122 r 0 1000b
123 EOF
124
125 _filesize $out
126
127 echo "*** test 3 - alloc & filesize"
128 rm -f $out
129 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
130 a 1000b
131 EOF
132
133 _filesize $out
134
135 echo "*** test 4 - allocations cleared on O_TRUNC"
136 rm -f $out
137 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
138 a 1000b
139 EOF
140 _filesize $out
141
142 cat <<EOF | src/alloc -n -b $bsize -f $out -t | _block_filter
143 m
144 EOF
145 _filesize $out
146
147 echo "*** test 5 - reserve / unreserve"
148 rm -f $out
149 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
150 r 0 100b
151 u 100b 500b
152 m
153 u 900b 200b
154 m
155 EOF
156
157 echo "*** test 6 - reserve adjacent"
158 rm -f $out
159 cat <<EOF | src/alloc -t -n -b $bsize -f $out | _block_filter
160 r 0 100b
161 r 100b 100b
162 m
163 EOF
164
165 echo "*** test 7 - alloc"
166 rm -f $out
167 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
168 a 1000b
169 m
170 a 2000b
171 m
172 EOF
173
174 _filesize $out
175
176 echo "*** test 8 - alloc & truncate"
177 rm -f $out
178 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
179 a 1000b
180 m
181 t 500b
182 m
183 EOF
184
185 _filesize $out
186
187 echo "*** test 9 - reserve & truncate"
188 rm -f $out
189 cat <<EOF | src/alloc -n -b $bsize -f $out | _block_filter
190 r 0 1000b
191 m
192 t 500b
193 m
194 EOF
195
196 _filesize $out
197
198
199 status=0
200 exit