c3adba0a75b9884be5b9b1601bc23ea88a810557
[xfstests-dev.git] / tests / generic / 213
1 #! /bin/bash
2 # FS QA Test No. 213
3 #
4 # Check some unwritten extent boundary conditions, fallocate version.
5 #
6 # Based on xfs-specific test 072
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
10 # Copyright (c) 2009 Red Hat, Inc. All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #
25 #-----------------------------------------------------------------------
26 #
27
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 seqres=$RESULT_DIR/$seq
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 _cleanup()
35 {
36         cd /
37         rm -f $tmp.*
38 }
39
40 here=`pwd`
41 tmp=$TEST_DIR/$$
42 status=1        # failure is the default!
43 trap "_cleanup; exit \$status" 0 1 2 3 15
44
45 # get standard environment, filters and checks
46 . ./common/rc
47 . ./common/filter
48
49 # real QA test starts here
50 # generic, but xfs_io's fallocate must work
51 _supported_fs generic
52 # only Linux supports fallocate
53 _supported_os Linux
54
55 [ -n "$XFS_IO_PROG" ] || _notrun "xfs_io executable not found"
56
57 rm -f $seqres.full
58
59 _require_xfs_io_falloc
60
61 # check there's enough freespace on $TEST_DIR ... (1GiB + 1MiB)
62 avail=`df -P $TEST_DIR | awk 'END {print $4}'`
63 [ "$avail" -ge 1049600 ] || _notrun "Test device is too small ($avail KiB)"
64
65 # reserve 1GiB, truncate at 100bytes
66 $XFS_IO_PROG -F -f -c 'falloc 0 1g' -c 'truncate 100' $TEST_DIR/ouch
67 rm -f $TEST_DIR/ouch
68
69 # reserve 1GiB, truncate at 1GiB
70 $XFS_IO_PROG -F -f -c 'falloc 0 1g' -c 'truncate 1g' $TEST_DIR/ouch
71 rm -f $TEST_DIR/ouch
72
73 # reserve 1GiB, truncate at 2GiB
74 $XFS_IO_PROG -F -f -c 'falloc 0 1g' -c 'truncate 2g' $TEST_DIR/ouch
75 rm -f $TEST_DIR/ouch
76
77 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
78 $XFS_IO_PROG -F -f -c 'falloc 0 1g' -c 'falloc 2g 1m' -c 'truncate 3g' $TEST_DIR/ouch
79 rm -f $TEST_DIR/ouch
80
81 # Try to reserve more space than we have
82 echo "We should get: fallocate: No space left on device"
83 echo "Strangely, xfs_io sometimes says \"Success\" when something went wrong, FYI"
84
85 let toobig=$avail*2
86 $XFS_IO_PROG -F -f -c "falloc 0 ${toobig}k" $TEST_DIR/ouch
87 rm -f $TEST_DIR/ouch
88
89 # success, all done
90 status=0
91 exit