populate: add _require_populate_commands to check for tools
[xfstests-dev.git] / tests / xfs / 034
1 #! /bin/bash
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
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32
33 _cleanup()
34 {
35     cd /
36     rm -f $tmp.*
37     echo "*** unmount"
38     _scratch_unmount 2>/dev/null
39 }
40 trap "_cleanup; exit \$status" 0 1 2 3 15
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45
46 # real QA test starts here
47 _supported_fs xfs
48 _supported_os Linux
49
50 _require_scratch
51
52 echo "*** init FS"
53
54 rm -f $seqres.full
55 _scratch_unmount >/dev/null 2>&1
56 echo "*** MKFS ***"                         >>$seqres.full
57 echo ""                                     >>$seqres.full
58 _scratch_mkfs_xfs                           >>$seqres.full 2>&1 \
59     || _fail "mkfs failed"
60 _scratch_mount                              >>$seqres.full 2>&1 \
61     || _fail "mount failed"
62
63 echo "*** test"
64
65 _check_scratch_fs
66
67 if ! touch $SCRATCH_MNT/fish
68 then
69     echo "!!! failed to touch fish"
70     exit
71 fi
72
73 if ! src/xfsctl $SCRATCH_MNT $SCRATCH_MNT/fish >>$seqres.full 2>&1
74 then
75     echo "!!! failed to run xfsctl test program"
76     exit
77 fi
78
79 if ! rm $SCRATCH_MNT/fish
80 then
81     echo "!!! failed to remove fish"
82     exit
83 fi
84
85 # pv 801241 causes corruption here (inode left in agi_unlinked list)
86 echo "*** done"
87 # happy exit
88 status=0
89 exit 0