xfstests: remove 285.full and 286.full
[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
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
32
33 # get standard environment, filters and checks
34 . ./common.rc
35
36 _supported_fs generic
37 _supported_os Linux IRIX
38 _require_scratch
39
40 # real QA test starts here
41 rm -f $seq.full
42
43 umount $SCRATCH_DEV 2>/dev/null
44 echo "--> mkfs 256m filesystem"
45 _scratch_mkfs_sized `expr 256 \* 1024 \* 1024` >> $seq.full 2>&1
46 _scratch_mount
47
48 loops=16
49
50 # Buffer size argument supplied to xfs_io "pwrite" command
51 buffer="-b $(expr 512 \* 1024)"
52
53 echo "--> $loops buffered 64m writes in a loop"
54 for I in `seq 1 $loops`; do
55         echo -n "$I "
56         xfs_io -F -f \
57                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seq.full
58         rm -f $SCRATCH_MNT/test
59 done
60
61 echo
62 umount $SCRATCH_DEV
63 _scratch_mount
64
65 echo "--> $loops direct 64m writes in a loop"
66 for I in `seq 1 $loops`; do
67         echo -n "$I "
68         xfs_io -F -f -d \
69                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seq.full
70         rm -f $SCRATCH_MNT/test 
71 done
72
73 echo
74 umount $SCRATCH_DEV
75
76 status=0
77 exit