xfstests: make 258 more forgiving of timestamp rounding
[xfstests-dev.git] / 203
1 #! /bin/bash
2 # FS QA Test No. 203
3 #
4 # Test out reallocation of the extent array in xfs_io.
5 # Based on a testcase from Tomasz Majkowski <moosh009@gmail.com>.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2009 Christoph Hellwig.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=hch@lst.de
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
34 _write_holes()
35 {
36         file=$1
37         holes=$2
38         let writes=$holes+1
39         let fsize=$(($writes * 0x100000))
40
41         # prevent EOF preallocation from affecting results
42         xfs_io -f $file -c "truncate $fsize"
43
44         offset=0
45         for i in `seq 0 $writes`; do
46                 xfs_io -f $file -c "pwrite -q $offset 1"
47                 let offset=$offset+0x100000
48         done
49 }
50
51 #       0: [0..7]: 104..111
52 #       1: [8..2047]: hole
53 _filter_bmap()
54 {
55         _filter_test_dir |
56         awk '$3 ~ /hole/ { print $1, $2, $3; next }
57              {print $1, $2; next}'
58 }
59
60 _cleanup()
61 {
62         rm -f $TEST_DIR/hole_file*
63         rm -f $TEST_DIR/r??
64 }
65 trap "_cleanup; exit \$status" 0 1 2 3 15
66
67 # get standard environment, filters and checks
68 . ./common.rc
69 . ./common.filter
70
71 # real QA test starts here
72 _supported_fs xfs
73 _supported_os Linux
74
75
76 for i in 10 14 15 16 17 28 29 30 31; do
77         rm -f $TEST_DIR/hole_file
78         _write_holes $TEST_DIR/hole_file${i} ${i}
79 done
80
81 for i in 10 14 15 16 17 28 29 30 31; do
82         xfs_bmap $TEST_DIR/hole_file${i} | _filter_bmap
83         echo
84 done
85
86 # success, all done
87 echo "*** done"
88 rm -f $seq.full
89 status=0