xfstests: include test subdirectory support
[xfstests-dev.git] / 176
1 #! /bin/bash
2 # FSQA Test No. 176
3 #
4 # Check if resvsp on file create effects bmap output after hole punch.
5 # 967674: hole not show when file is created with resvsp
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 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 rm -f $seq.full
31 status=1    # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36         rm -f $tmp/*
37 }
38
39 # get standard environment, filters and checks
40 . ./common.rc
41 . ./common.filter
42 . ./common.dmapi
43 . ./common.punch
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os Linux
48
49 _require_scratch
50
51 # test that we have DMAPI support
52 _dmapi_scratch_mount
53 umount $SCRATCH_MNT > /dev/null 2>&1
54
55 # _test_punch args: blksize extsize_hint filesize "pp1 pp2 pp3" \
56 #                                       "ps1 ps2 ps3" "pt1 pt2 pt3" "wp1 wp2" "ws1 ws2" \
57 #                                       "w p p w p" resvsp
58
59 echo "-- test dmpunch-hole with resvsp on file create --"
60 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p"
61
62 echo
63 echo "-- this time dont use resvsp --"
64 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p" noresv
65
66 echo
67 echo
68 echo "-- test unresvsp hole punch with resvsp on file create --"
69 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p"
70
71 echo
72 echo "-- this time dont use resvsp --"
73 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p" noresv
74
75 status=0
76 exit