xfstests: introduce a common directory
[xfstests-dev.git] / tests / xfs / 116
1 #! /bin/bash
2 # FS QA Test No. 116
3 #
4 # pv#940491
5 # Test out resetting of sb_qflags when mounting with no quotas after
6 # having mounted with quotas.
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 seqres=$RESULT_DIR/$seq
30 seqres=$RESULT_DIR/$seq
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
37
38 _cleanup()
39 {
40     cd /
41     rm -f $tmp.*
42 }
43
44 # get standard environment, filters and checks
45 . ./common/rc
46 . ./common/filter
47 . ./common/quota
48
49 # real QA test starts here
50
51 _supported_fs xfs
52 _supported_os IRIX Linux
53
54 _require_scratch
55 _require_xfs_quota
56
57 mkfs.xfs -f $SCRATCH_DEV >/dev/null 2>&1
58 mount -o uquota $SCRATCH_DEV $SCRATCH_MNT
59 umount $SCRATCH_MNT
60 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
61 mount $SCRATCH_DEV $SCRATCH_MNT
62 umount $SCRATCH_MNT
63 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
64
65
66 # success, all done
67 status=0
68 exit