xfs/004: don't fail test due to realtime files
[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
32 _require_scratch
33 _require_xfs_io_command "falloc"
34
35 rm -f $seqres.full
36 _scratch_unmount >/dev/null 2>&1
37
38 _scratch_mkfs_xfs >/dev/null    || _fail "mkfs failed"
39 _scratch_mount
40
41 # check there's enough freespace on $SCRATCH_MNT ... (1GiB + 1MiB)
42 avail=`df -P $SCRATCH_MNT | awk 'END {print $4}'`
43 [ "$avail" -ge 1049600 ] || _notrun "Scratch device is too small ($avail KiB)"
44
45 echo Silence is golden
46
47 # reserve 1GiB, truncate at 100bytes
48 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 100' $SCRATCH_MNT/ouch
49 rm -f $SCRATCH_MNT/ouch
50
51 # reserve 1GiB, truncate at 1GiB
52 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 1g' $SCRATCH_MNT/ouch
53 rm -f $SCRATCH_MNT/ouch
54
55 # reserve 1GiB, truncate at 2GiB
56 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 2g' $SCRATCH_MNT/ouch
57 rm -f $SCRATCH_MNT/ouch
58
59 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
60 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'resvsp 2g 1m' -c 'truncate 3g' $SCRATCH_MNT/ouch
61 rm -f $SCRATCH_MNT/ouch
62
63 # success, all done
64 status=0
65 exit