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