xfstests: make install support common/ and tests/ dirs
[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
41 # real QA test starts here
42 rm -f $seqres.full
43
44 umount $SCRATCH_DEV 2>/dev/null
45 echo "--> mkfs 256m filesystem"
46 _scratch_mkfs_sized `expr 256 \* 1024 \* 1024` >> $seqres.full 2>&1
47 _scratch_mount
48
49 loops=16
50
51 # Buffer size argument supplied to xfs_io "pwrite" command
52 buffer="-b $(expr 512 \* 1024)"
53
54 echo "--> $loops buffered 64m writes in a loop"
55 for I in `seq 1 $loops`; do
56         echo -n "$I "
57         xfs_io -F -f \
58                 -c "pwrite ${buffer} 0 64m" $SCRATCH_MNT/test >> $seqres.full
59         rm -f $SCRATCH_MNT/test
60 done
61
62 echo
63 umount $SCRATCH_DEV
64 _scratch_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 -F -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 umount $SCRATCH_DEV
76
77 status=0
78 exit