xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 008
1 #! /bin/bash
2 # FS QA Test No. 008
3 #
4 # randholes test
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  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=0        # success is the default!
32 pgsize=`$here/src/feature -s`
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     rm -f $tmp.*
38     rm -rf $testdir/randholes.$$.*
39     _cleanup_testdir
40 }
41
42 _filter()
43 {
44     sed -e "s/-b $pgsize/-b PGSIZE/g" \
45         -e "s/-l .* -c/-l FSIZE -c/g"
46 }
47
48 # get standard environment, filters and checks
49 . ./common/rc
50 . ./common/filter
51
52 _do_test()
53 {
54     _n="$1"
55     _holes="$2"
56     _param="$3"
57
58     out=$testdir/randholes.$$.$_n
59     echo ""
60     echo "randholes.$_n : $_param" | _filter
61     echo "------------------------------------------"
62     if $here/src/randholes $_param $out >$tmp.out
63     then
64         # only check if we're not allocating in huge chunks (extsz flag)
65         if _test_inode_flag extsize $out || _test_inode_flag realtime $out
66         then
67                 echo "holes is in range"
68         else
69                 # quick check - how many holes did we get?
70                 count=`xfs_bmap $out | egrep -c ': hole'`
71                 # blocks can end up adjacent, therefore number of holes varies
72                 _within_tolerance "holes" $count $_holes 10% -v
73         fi
74     else
75         echo "    randholes returned $? - see $seq.out.full"
76         echo "--------------------------------------"       >>$seqres.full
77         echo "$_n - output from randholes:"                 >>$seqres.full
78         echo "--------------------------------------"       >>$seqres.full
79         cat $tmp.out                                        >>$seqres.full
80         echo "--------------------------------------"       >>$seqres.full
81         echo "$_n - output from bmap:"                      >>$seqres.full
82         echo "--------------------------------------"       >>$seqres.full
83         xfs_bmap -vvv $out                                  >>$seqres.full
84         status=1
85     fi
86 }
87
88 # real QA test starts here
89 _supported_fs xfs
90 _supported_os IRIX Linux
91
92 _setup_testdir
93
94 rm -f $seqres.full
95
96 # Note on special numbers here.
97 #
98 # We are trying to create roughly 50 or 100 holes in a file
99 # using random writes. Assuming a good distribution of 50 writes
100 # in a file, the file only needs to be 3-4x the size of the write
101 # size muliplied by the number of writes. Hence we use 200 * pgsize
102 # for files we want 50 holes in and 400 * pgsize for files we want
103 # 100 holes in. This keeps the runtime down as low as possible.
104 #
105 _do_test 1 50 "-l `expr 200 \* $pgsize` -c 50 -b $pgsize"
106 _do_test 2 100 "-l `expr 400 \* $pgsize` -c 100 -b $pgsize"
107 _do_test 3 100 "-l `expr 400 \* $pgsize` -c 100 -b 512"   # test partial pages
108
109 # rinse, lather, repeat for direct IO
110 _do_test 4 50 "-d -l `expr 200 \* $pgsize` -c 50 -b $pgsize"
111 _do_test 5 100 "-d -l `expr 400 \* $pgsize` -c 100 -b $pgsize"
112 # note: direct IO requires page aligned IO
113
114 # todo: realtime.
115
116 # success, all done
117 exit