xfs/029: filter out "extended-header: cycle: 1" from output
[xfstests-dev.git] / tests / xfs / 072
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 072
6 #
7 # Check some unwritten extent boundary conditions
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 _cleanup()
14 {
15         cd /
16         rm -f $tmp.*
17         _scratch_unmount 2>/dev/null
18 }
19
20 here=`pwd`
21 tmp=/tmp/$$
22 status=1        # failure is the default!
23 trap "_cleanup; exit \$status" 0 1 2 3 15
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28
29 # real QA test starts here
30 _supported_fs xfs
31 _supported_os Linux
32
33 _require_scratch
34 _require_xfs_io_command "falloc"
35
36 rm -f $seqres.full
37 _scratch_unmount >/dev/null 2>&1
38
39 _scratch_mkfs_xfs >/dev/null    || _fail "mkfs failed"
40 _scratch_mount
41
42 # check there's enough freespace on $SCRATCH_MNT ... (1GiB + 1MiB)
43 avail=`df -P $SCRATCH_MNT | awk 'END {print $4}'`
44 [ "$avail" -ge 1049600 ] || _notrun "Scratch device is too small ($avail KiB)"
45
46 echo Silence is golden
47
48 # reserve 1GiB, truncate at 100bytes
49 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 100' $SCRATCH_MNT/ouch
50 rm -f $SCRATCH_MNT/ouch
51
52 # reserve 1GiB, truncate at 1GiB
53 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 1g' $SCRATCH_MNT/ouch
54 rm -f $SCRATCH_MNT/ouch
55
56 # reserve 1GiB, truncate at 2GiB
57 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 2g' $SCRATCH_MNT/ouch
58 rm -f $SCRATCH_MNT/ouch
59
60 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
61 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'resvsp 2g 1m' -c 'truncate 3g' $SCRATCH_MNT/ouch
62 rm -f $SCRATCH_MNT/ouch
63
64 # success, all done
65 status=0
66 exit