xfstests: kill useless test owner fields
[xfstests-dev.git] / 119
1 #! /bin/bash
2 # FS QA Test No. 119
3 #
4 # Leaking reservation space in the GRH
5 # Test out pv#942130
6 # This can hang when things aren't working
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
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 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46
47 # Modify as appropriate.
48 _supported_fs xfs
49 _supported_os IRIX Linux
50
51 _require_scratch
52
53 # this may hang
54 sync
55
56 export MKFS_OPTIONS="-l version=2,size=1200b,su=64k" 
57 export MOUNT_OPTIONS="-o logbsize=64k"
58 _scratch_mkfs_xfs >/dev/null
59
60 _scratch_mount
61
62 max=99
63 i=0
64 echo "start freezing and unfreezing"
65 while [ $i -lt $max ]; do
66         xfs_freeze -f $SCRATCH_MNT
67         xfs_freeze -u $SCRATCH_MNT
68         echo -n .
69         let i=$i+1
70 done
71 echo "done"
72
73 # success, all done
74 status=0
75 exit