]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
xfstests: add test 199, bad_features2 correction
authorChristoph Hellwig <hch@lst.de>
Sat, 10 Jan 2009 20:37:27 +0000 (21:37 +0100)
committerChristoph Hellwig <hch@brick.lst.de>
Sat, 10 Jan 2009 20:37:27 +0000 (21:37 +0100)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
199 [new file with mode: 0644]
199.out [new file with mode: 0644]
group

diff --git a/199 b/199
new file mode 100644 (file)
index 0000000..099cc1c
--- /dev/null
+++ b/199
@@ -0,0 +1,65 @@
+#! /bin/sh
+# FS QA Test No. 199
+#
+# Check that a filesystem first mounted read-only and then remounted
+# performs the features2 fixup properly.
+#
+#-----------------------------------------------------------------------
+# Copyright (c) 2008 Christoph Hellwig.
+#-----------------------------------------------------------------------
+#
+# creator
+owner=hch@lst.de
+
+seq=`basename $0`
+echo "QA output created by $seq"
+
+here=`pwd`
+tmp=/tmp/$$
+status=1       # failure is the default!
+
+_cleanup()
+{
+       cd /
+       umount $SCRATCH_MNT >/dev/null 2>&1
+}
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+# get standard environment, filters and checks
+. ./common.rc
+. ./common.filter
+
+# real QA test starts here
+_supported_fs xfs
+_supported_os Linux
+
+_require_scratch
+
+_scratch_mkfs_xfs >/dev/null 2>&1
+
+#
+# Print the current flags.  Just a dummy so that the test breaks
+# in an obvious way when the default feature flags changed in mkfs
+#
+echo "Default feature2 flags:"
+xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
+xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print bad_features2'
+
+#
+# Now clear the normal flags
+#
+echo "Clearing features2:"
+xfs_db -x $SCRATCH_DEV -c 'sb' -c 'write features2 0'
+
+#
+# And print the flags after a mount ro and remount rw
+_scratch_mount -o ro
+_scratch_mount -o remount,rw
+umount $SCRATCH_MNT
+echo "Features 2 after mount ro and remount rw:"
+xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
+
+# success, all done
+echo "*** done"
+rm -f $seq.full
+status=0
diff --git a/199.out b/199.out
new file mode 100644 (file)
index 0000000..04b513c
--- /dev/null
+++ b/199.out
@@ -0,0 +1,9 @@
+QA output created by 199
+Default feature2 flags:
+features2 = 0x8
+bad_features2 = 0x8
+Clearing features2:
+features2 = 0
+Features 2 after mount ro and remount rw:
+features2 = 0x8
+*** done
diff --git a/group b/group
index fdacc726766a305fbb409cc0ab6aaf8d412e034c..121641f80912cb7c6b3f5fc1d0991ee65d0df473 100644 (file)
--- a/group
+++ b/group
@@ -300,3 +300,4 @@ atime
 195 ioctl dump auto
 196 quota auto
 197 dir auto
+199 mount auto