misc: move exit status into trap handler
[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
36 [ -n "$XFS_IO_PROG" ] || _notrun "xfs_io executable not found"
37
38 rm -f $seqres.full
39
40 _require_test
41 _require_xfs_io_command "falloc"
42
43 # check there's enough freespace on $TEST_DIR ... (1GiB + 1MiB)
44 avail=`df -P $TEST_DIR | awk 'END {print $4}'`
45 [ "$avail" -ge 1049600 ] || _notrun "Test device is too small ($avail KiB)"
46
47 # reserve 1GiB, truncate at 100bytes
48 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 100' $TEST_DIR/ouch
49 rm -f $TEST_DIR/ouch
50
51 # reserve 1GiB, truncate at 1GiB
52 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 1g' $TEST_DIR/ouch
53 rm -f $TEST_DIR/ouch
54
55 # reserve 1GiB, truncate at 2GiB
56 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'truncate 2g' $TEST_DIR/ouch
57 rm -f $TEST_DIR/ouch
58
59 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
60 $XFS_IO_PROG -f -c 'falloc 0 1g' -c 'falloc 2g 1m' -c 'truncate 3g' $TEST_DIR/ouch
61 rm -f $TEST_DIR/ouch
62
63 # Try to reserve more space than we have
64 echo "We should get: fallocate: No space left on device"
65 echo "Strangely, xfs_io sometimes says \"Success\" when something went wrong, FYI"
66
67 let toobig=$avail*2
68 $XFS_IO_PROG -f -c "falloc 0 ${toobig}k" $TEST_DIR/ouch
69 rm -f $TEST_DIR/ouch
70
71 # success, all done
72 status=0
73 exit