274: Many fixups
[xfstests-dev.git] / 226
1 #! /bin/bash
2 # FS QA Test No. 226
3 #
4 # Test for prealloc space leaks by rewriting the same file in a loop
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2009 Eric Sandeen.  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 # creator
25 owner=sandeen@sandeen.net
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 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37
38 _supported_fs generic
39 _supported_os Linux IRIX
40 _require_scratch
41
42 # real QA test starts here
43 rm -f $seq.full
44
45 umount $SCRATCH_DEV 2>/dev/null
46 echo "--> mkfs 256m filesystem"
47 _scratch_mkfs_sized `expr 256 \* 1024 \* 1024` >> $seq.full 2>&1
48 _scratch_mount
49
50 loops=16
51
52 # Buffer size argument supplied to xfs_io "pwrite" command
53 buffer="-b $(expr 512 \* 1024)"
54
55 echo "--> $loops buffered 64m writes in a loop"
56 for I in `seq 1 $loops`; do
57         echo -n "$I "
58         xfs_io -F -f \
59                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seq.full
60         rm -f $SCRATCH_MNT/test
61 done
62
63 echo
64 umount $SCRATCH_DEV
65 _scratch_mount
66
67 echo "--> $loops direct 64m writes in a loop"
68 for I in `seq 1 $loops`; do
69         echo -n "$I "
70         xfs_io -F -f -d \
71                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seq.full
72         rm -f $SCRATCH_MNT/test 
73 done
74
75 echo
76 umount $SCRATCH_DEV
77
78 status=0
79 exit