generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 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 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
33
34 # get standard environment, filters and checks
35 . ./common/rc
36
37 _supported_fs generic
38 _supported_os Linux IRIX
39 _require_scratch
40 _require_odirect
41
42 # real QA test starts here
43 rm -f $seqres.full
44
45 _scratch_unmount 2>/dev/null
46 echo "--> mkfs 256m filesystem"
47 _scratch_mkfs_sized `expr 256 \* 1024 \* 1024` >> $seqres.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_PROG -f \
59                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seqres.full
60         rm -f $SCRATCH_MNT/test
61 done
62
63 echo
64 _scratch_cycle_mount
65
66 echo "--> $loops direct 64m writes in a loop"
67 for I in `seq 1 $loops`; do
68         echo -n "$I "
69         $XFS_IO_PROG -f -d \
70                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seqres.full
71         rm -f $SCRATCH_MNT/test 
72 done
73
74 echo
75 _scratch_unmount
76
77 status=0
78 exit