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