Add a test for ENOSPC when fallocating.
[xfstests-dev.git] / 034
1 #! /bin/sh
2 # FS QA Test No. 034
3 #
4 # pv 801241 - check for reference leaks from the *handle xfsctls
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=dxm@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33
34 _cleanup()
35 {
36     cd /
37     rm -f $tmp.*
38     echo "*** unmount"
39     umount $SCRATCH_MNT 2>/dev/null
40 }
41 trap "_cleanup; exit \$status" 0 1 2 3 15
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46
47 # real QA test starts here
48 _supported_fs xfs
49 _supported_os Linux
50
51 _require_scratch
52
53 echo "*** init FS"
54
55 rm -f $seq.full
56 umount $SCRATCH_DEV >/dev/null 2>&1
57 echo "*** MKFS ***"                         >>$seq.full
58 echo ""                                     >>$seq.full
59 _scratch_mkfs_xfs                           >>$seq.full 2>&1 \
60     || _fail "mkfs failed"
61 _scratch_mount                              >>$seq.full 2>&1 \
62     || _fail "mount failed"
63
64 echo "*** test"
65
66 _check_scratch_fs
67
68 if ! touch $SCRATCH_MNT/fish
69 then
70     echo "!!! failed to touch fish"
71     exit
72 fi
73
74 if ! src/xfsctl $SCRATCH_MNT $SCRATCH_MNT/fish >>$seq.full 2>&1
75 then
76     echo "!!! failed to run xfsctl test program"
77     exit
78 fi
79
80 if ! rm $SCRATCH_MNT/fish
81 then
82     echo "!!! failed to remove fish"
83     exit
84 fi
85
86 # pv 801241 causes corruption here (inode left in agi_unlinked list)
87 _check_scratch_fs
88
89 echo "*** done"
90 # happy exit
91 status=0
92 exit 0