generic: test for non-zero used blocks while writing into a file
[xfstests-dev.git] / tests / generic / 009
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright 2014 (C) Red Hat, Inc., Lukas Czerner <lczerner@redhat.com>
4 #
5 # FS QA Test No. 009
6 #
7 # Test fallocate FALLOC_FL_ZERO_RANGE
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16
17 _cleanup()
18 {
19     rm -f $tmp.*
20 }
21
22 trap "_cleanup ; exit \$status" 0 1 2 3 15
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/punch
28
29 # real QA test starts here
30 _require_xfs_io_command "fzero"
31 _require_xfs_io_command "fiemap"
32 _require_xfs_io_command "falloc"
33 _require_test
34
35 testfile=$TEST_DIR/009.$$
36
37 # Disable extent zeroing for ext4 as that change where holes are created
38 if [ "$FSTYP" = "ext4" ]; then
39         _ext4_disable_extent_zeroout
40 fi
41 if [ "$FSTYP" = "overlay" -a "$OVL_BASE_FSTYP" = "ext4" ]; then
42         _ext4_disable_extent_zeroout "$OVL_BASE_TEST_DEV"
43 fi
44
45 # Standard zero range tests
46 _test_generic_punch falloc fzero fzero fiemap _filter_fiemap $testfile
47
48 # Delayed allocation zero range tests
49 _test_generic_punch -d falloc fzero fzero fiemap _filter_fiemap $testfile
50
51 # Multi zero range tests
52 _test_generic_punch -k falloc fzero fzero fiemap _filter_fiemap $testfile
53
54 # Delayed allocation multi zero range tests
55 _test_generic_punch -d -k falloc fzero fzero fiemap _filter_fiemap $testfile
56
57 status=0 ; exit