xfstests: kill useless test owner fields
[xfstests-dev.git] / 199
1 #! /bin/bash
2 # FS QA Test No. 199
3 #
4 # Check that the features2 location fixups work correctly.  We check both
5 # a regular read-write mount of a filesystem and the case where the
6 # filesystem is first mounted read-only and then later remounted read-write,
7 # which is the usual case for the root filesystem.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2008 Christoph Hellwig.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
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
34 _cleanup()
35 {
36         cd /
37         umount $SCRATCH_MNT >/dev/null 2>&1
38 }
39 trap "_cleanup; exit \$status" 0 1 2 3 15
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os Linux
48
49 _require_scratch
50
51 _scratch_mkfs_xfs -l lazy-count=1 >/dev/null 2>&1
52
53 #
54 # Print the current flags.  Just a dummy so that the test breaks
55 # in an obvious way when the default feature flags changed in mkfs
56 #
57 echo "Default feature2 flags:"
58 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
59 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print bad_features2'
60
61 #
62 # Now clear the normal flags
63 #
64 echo "Clearing features2:"
65 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'write features2 0'
66
67 _scratch_mount
68 umount $SCRATCH_MNT
69 echo "Features 2 after mount rw:"
70 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
71
72 #
73 # Clear the normal flags again for the second rount.
74 #
75 echo "Clearing features2:"
76 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'write features2 0'
77
78 #
79 # And print the flags after a mount ro and remount rw
80 #
81 _scratch_mount -o ro
82 _scratch_mount -o remount,rw
83 umount $SCRATCH_MNT
84 echo "Features 2 after mount ro and remount rw:"
85 xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
86
87 # success, all done
88 echo "*** done"
89 rm -f $seq.full
90 status=0