xfstests: add local.config example
[xfstests-dev.git] / 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 # creator
27 owner=fsgqa@snap.melbourne.sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46 . ./common.quota
47
48 # real QA test starts here
49
50 _supported_fs xfs
51 _supported_os IRIX Linux
52
53 _require_scratch
54 _require_xfs_quota
55
56 mkfs.xfs -f $SCRATCH_DEV >/dev/null 2>&1
57 mount -o uquota $SCRATCH_DEV $SCRATCH_MNT
58 umount $SCRATCH_MNT
59 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
60 mount $SCRATCH_DEV $SCRATCH_MNT
61 umount $SCRATCH_MNT
62 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
63
64
65 # success, all done
66 status=0
67 exit