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