xfstests: make install support common/ and tests/ dirs
[xfstests-dev.git] / tests / xfs / 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 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 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38     cd /
39     rm -f $tmp.*
40 }
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45
46 # real QA test starts here
47
48 # Modify as appropriate.
49 _supported_fs xfs
50 _supported_os IRIX Linux
51
52 _require_scratch
53
54 # this may hang
55 sync
56
57 export MKFS_OPTIONS="-l version=2,size=1200b,su=64k" 
58 export MOUNT_OPTIONS="-o logbsize=64k"
59 _scratch_mkfs_xfs >/dev/null
60
61 _scratch_mount
62
63 max=99
64 i=0
65 echo "start freezing and unfreezing"
66 while [ $i -lt $max ]; do
67         xfs_freeze -f $SCRATCH_MNT
68         xfs_freeze -u $SCRATCH_MNT
69         echo -n .
70         let i=$i+1
71 done
72 echo "done"
73
74 # success, all done
75 status=0
76 exit