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