xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 166
1 #! /bin/bash
2 # FSQA Test No. 166
3 #
4 # ->page-mkwrite test - unwritten extents and mmap
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2007 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=1    # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33 rm -f $seqres.full
34
35 _cleanup()
36 {
37     _cleanup_testdir
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43
44 # assumes 1st, 3rd and 5th blocks are single written blocks,
45 # the others are unwritten.
46 _filter_blocks()
47 {
48         $AWK_PROG '
49 /^ +[0-9]/ {
50         if (!written_size) {
51                 written_size = $6
52                 unwritten1 = ((1048576/512) / 2) - written_size
53                 unwritten2 = ((1048576/512) / 2) - 2 * written_size
54         }
55
56         # is the extent unwritten?
57         unwritten_ext = 0;
58         if ($7 >= 10000)
59                 unwritten_ext = 1;
60
61         size = "RIGHT"
62         flags = "GOOD"
63         if (unwritten_ext) {
64                 if (unwritten1) {
65                         if ($6 != unwritten1)
66                                 size = "WRONG"
67                         unwritten1 = 0;
68                 } else if ($6 != unwritten2) {
69                         size = "WRONG"
70                 }
71         } else {
72                 if ($6 != written_size)
73                         size = "WRONG"
74         }
75         print $1, "[AA..BB]", "XX..YY", "AG", "(AA..BB)", size, flags
76 }'
77 }
78
79 # real QA test starts here
80 _supported_fs xfs
81 _supported_os Linux
82
83 _setup_testdir
84 _require_scratch
85 _scratch_mkfs_xfs >/dev/null 2>&1
86 _scratch_mount
87
88 TEST_FILE=$SCRATCH_MNT/test_file
89 TEST_PROG=$here/src/unwritten_mmap
90 FILE_SIZE=1048576
91
92 rm -f $TEST_FILE
93 $TEST_PROG $FILE_SIZE $TEST_FILE
94
95 xfs_bmap -vp $TEST_FILE >> $seqres.full
96 xfs_bmap -vp $TEST_FILE | _filter_blocks
97
98 status=0
99 exit