Add GPL license plate to SGI's test files.
[xfstests-dev.git] / 034
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 034
22 #
23 # pv 801241 - check for reference leaks from the *handle xfsctls
24 #
25 # creator
26 owner=dxm@sgi.com
27
28 seq=`basename $0`
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 $seq.full
57 umount $SCRATCH_DEV >/dev/null 2>&1
58 echo "*** MKFS ***"                         >>$seq.full
59 echo ""                                     >>$seq.full
60 _scratch_mkfs_xfs                           >>$seq.full 2>&1 \
61     || _fail "mkfs failed"
62 _scratch_mount                              >>$seq.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 >>$seq.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