common/fuzzy: try to clear blocking flags first in _scratch_fuzz_modify
[xfstests-dev.git] / tests / generic / 213
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
4 # Copyright (c) 2009 Red Hat, Inc. All Rights Reserved.
5 #
6 # FS QA Test No. 213
7 #
8 # Check some unwritten extent boundary conditions, fallocate version.
9 #
10 # Based on xfs-specific test 072
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 _cleanup()
17 {
18         cd /
19         rm -f $tmp.*
20 }
21
22 here=`pwd`
23 tmp=$TEST_DIR/$$
24 status=1        # failure is the default!
25 trap "_cleanup; exit \$status" 0 1 2 3 15
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30
31 # real QA test starts here
32 # generic, but xfs_io's fallocate must work
33 _supported_fs generic
34 # only Linux supports fallocate
35 _supported_os Linux
36
37 [ -n "$XFS_IO_PROG" ] || _notrun "xfs_io executable not found"
38
39 rm -f $seqres.full
40
41 _require_test
42 _require_xfs_io_command "falloc"
43
44 # check there's enough freespace on $TEST_DIR ... (1GiB + 1MiB)
45 avail=`df -P $TEST_DIR | awk 'END {print $4}'`
46 [ "$avail" -ge 1049600 ] || _notrun "Test device is too small ($avail KiB)"
47
48 # reserve 1GiB, truncate at 100bytes
49 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 100' $TEST_DIR/ouch
50 rm -f $TEST_DIR/ouch
51
52 # reserve 1GiB, truncate at 1GiB
53 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 1g' $TEST_DIR/ouch
54 rm -f $TEST_DIR/ouch
55
56 # reserve 1GiB, truncate at 2GiB
57 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 2g' $TEST_DIR/ouch
58 rm -f $TEST_DIR/ouch
59
60 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
61 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'falloc 2g 1m' -c 'truncate 3g' $TEST_DIR/ouch
62 rm -f $TEST_DIR/ouch
63
64 # Try to reserve more space than we have
65 echo "We should get: fallocate: No space left on device"
66 echo "Strangely, xfs_io sometimes says \"Success\" when something went wrong, FYI"
67
68 let toobig=$avail*2
69 $XFS_IO_PROG -f -c "falloc 0 ${toobig}k" $TEST_DIR/ouch
70 rm -f $TEST_DIR/ouch
71
72 # success, all done
73 status=0
74 exit