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