common: Use _require_xfs_io_command() instead of helpers
[xfstests-dev.git] / tests / generic / 009
1 #! /bin/bash
2 # FS QA Test No. 009
3 #
4 # Test fallocate FALLOC_FL_ZERO_RANGE
5 #
6 #-----------------------------------------------------------------------
7 # Copyright 2014 (C) Red Hat, Inc., Lukas Czerner <lczerner@redhat.com>
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
33 _cleanup()
34 {
35     rm -f $tmp.*
36 }
37
38 trap "_cleanup ; exit \$status" 0 1 2 3 15
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/punch
44
45 # real QA test starts here
46 _supported_os Linux
47 _require_xfs_io_command "fzero"
48
49 testfile=$TEST_DIR/009.$$
50
51 # Disable extent zeroing for ext4 as that change where holes are created
52 if [ "$FSTYP" = "ext4" ]; then
53         DEV=`basename $TEST_DEV`
54         echo 0 >/sys/fs/ext4/$DEV/extent_max_zeroout_kb
55 fi
56
57 # When PAGE_SIZE > 4096 xfs extent layout is different so it would not match
58 # the output.
59 if [ "$FSTYP" = "xfs" ]; then
60         PAGE_SIZE=`getconf PAGE_SIZE`
61         if [ $PAGE_SIZE -gt 4096 ]; then
62                 _notrun "Not supported on xfs with page size > 4096"
63         fi
64 fi
65
66 # Standard zero range tests
67 _test_generic_punch falloc fzero fzero fiemap _filter_fiemap $testfile
68
69 # Delayed allocation zero range tests
70 _test_generic_punch -d falloc fzero fzero fiemap _filter_fiemap $testfile
71
72 # Multi zero range tests
73 _test_generic_punch -k falloc fzero fzero fiemap _filter_fiemap $testfile
74
75 # Delayed allocation multi zero range tests
76 _test_generic_punch -d -k falloc fzero fzero fiemap _filter_fiemap $testfile
77
78 status=0 ; exit