xfs: convert tests to SPDX license tags
[xfstests-dev.git] / tests / xfs / 176
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2007 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. 176
6 #
7 # Check if resvsp on file create effects bmap output after hole punch.
8 # 967674: hole not show when file is created with resvsp
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 rm -f $seqres.full
16 status=1    # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         rm -f $tmp/*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/dmapi
28 . ./common/punch
29
30 # real QA test starts here
31 _supported_fs xfs
32 _supported_os Linux
33
34 _require_scratch
35
36 # test that we have DMAPI support
37 _dmapi_scratch_mount
38 _scratch_unmount > /dev/null 2>&1
39
40 # _test_punch args: blksize extsize_hint filesize "pp1 pp2 pp3" \
41 #                                       "ps1 ps2 ps3" "pt1 pt2 pt3" "wp1 wp2" "ws1 ws2" \
42 #                                       "w p p w p" resvsp
43
44 echo "-- test dmpunch-hole with resvsp on file create --"
45 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p"
46
47 echo
48 echo "-- this time dont use resvsp --"
49 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p" noresv
50
51 echo
52 echo
53 echo "-- test unresvsp hole punch with resvsp on file create --"
54 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p"
55
56 echo
57 echo "-- this time dont use resvsp --"
58 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p" noresv
59
60 status=0
61 exit