generic/077: fall back to /usr if /lib/modules doesn't exist
[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 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 . ./common/quota
46
47 # real QA test starts here
48
49 _supported_fs xfs
50 _supported_os IRIX Linux
51
52 _require_scratch
53 _require_xfs_quota
54
55 mkfs.xfs -f $SCRATCH_DEV >/dev/null 2>&1
56 mount -o uquota $SCRATCH_DEV $SCRATCH_MNT
57 umount $SCRATCH_MNT
58 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
59 mount $SCRATCH_DEV $SCRATCH_MNT
60 umount $SCRATCH_MNT
61 xfs_db -r -c sb -c print $SCRATCH_DEV | grep qflags
62
63 # success, all done
64 status=0
65 exit