common: kill _supported_os
[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
33 _require_scratch
34
35 # test that we have DMAPI support
36 _dmapi_scratch_mount
37 _scratch_unmount > /dev/null 2>&1
38
39 # _test_punch args: blksize extsize_hint filesize "pp1 pp2 pp3" \
40 #                                       "ps1 ps2 ps3" "pt1 pt2 pt3" "wp1 wp2" "ws1 ws2" \
41 #                                       "w p p w p" resvsp
42
43 echo "-- test dmpunch-hole with resvsp on file create --"
44 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p"
45
46 echo
47 echo "-- this time dont use resvsp --"
48 _test_punch 4096 0 256 "240" "16" "d" "0" "256" "w p" noresv
49
50 echo
51 echo
52 echo "-- test unresvsp hole punch with resvsp on file create --"
53 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p"
54
55 echo
56 echo "-- this time dont use resvsp --"
57 _test_punch 4096 0 256 "240" "16" "u" "0" "256" "w p" noresv
58
59 status=0
60 exit