* [PATCH] test 199: test features2 fixup for the regular case, too
@ 2009-02-14 16:40 Christoph Hellwig
2009-02-14 20:11 ` Eric Sandeen
0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2009-02-14 16:40 UTC (permalink / raw)
To: xfs
Eric Sandeen noted that we should not only test the mount ro first, then
remount rw case in 199 but also the regular mount rw case.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: xfstests-dev/199
===================================================================
--- xfstests-dev.orig/199 2009-02-14 15:08:08.000000000 +0000
+++ xfstests-dev/199 2009-02-14 15:10:53.000000000 +0000
@@ -1,8 +1,10 @@
#! /bin/sh
# FS QA Test No. 199
#
-# Check that a filesystem first mounted read-only and then remounted
-# performs the features2 fixup properly.
+# Check that the features2 localtion fixups work correctly. We check both
+# a regualar read-write mount of a filesystem and the case where the
+# filesystem is first mounted read-only and then later remounted read-write,
+# which is the usual case for the root filesystem.
#
#-----------------------------------------------------------------------
# Copyright (c) 2008 Christoph Hellwig.
@@ -51,8 +53,20 @@
echo "Clearing features2:"
xfs_db -x $SCRATCH_DEV -c 'sb' -c 'write features2 0'
+_scratch_mount
+umount $SCRATCH_MNT
+echo "Features 2 after mount rw:"
+xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
+
+#
+# Clear the normal flags again for the second rount.
+#
+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
Index: xfstests-dev/199.out
===================================================================
--- xfstests-dev.orig/199.out 2009-02-14 15:11:18.000000000 +0000
+++ xfstests-dev/199.out 2009-02-14 15:11:26.000000000 +0000
@@ -4,6 +4,10 @@
bad_features2 = 0x8
Clearing features2:
features2 = 0
+Features 2 after mount rw:
+features2 = 0x8
+Clearing features2:
+features2 = 0
Features 2 after mount ro and remount rw:
features2 = 0x8
*** done
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] test 199: test features2 fixup for the regular case, too
2009-02-14 16:40 [PATCH] test 199: test features2 fixup for the regular case, too Christoph Hellwig
@ 2009-02-14 20:11 ` Eric Sandeen
0 siblings, 0 replies; 2+ messages in thread
From: Eric Sandeen @ 2009-02-14 20:11 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: xfs
Christoph Hellwig wrote:
> Eric Sandeen noted that we should not only test the mount ro first, then
> remount rw case in 199 but also the regular mount rw case.
>
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
>
> Index: xfstests-dev/199
> ===================================================================
> --- xfstests-dev.orig/199 2009-02-14 15:08:08.000000000 +0000
> +++ xfstests-dev/199 2009-02-14 15:10:53.000000000 +0000
> @@ -1,8 +1,10 @@
> #! /bin/sh
> # FS QA Test No. 199
> #
> -# Check that a filesystem first mounted read-only and then remounted
> -# performs the features2 fixup properly.
> +# Check that the features2 localtion fixups work correctly. We check both
^^^ typo (location)
> +# a regualar read-write mount of a filesystem and the case where the
^^^ typo (regular)
With those fixes, ACK, thanks!
-Eric
> +# filesystem is first mounted read-only and then later remounted read-write,
> +# which is the usual case for the root filesystem.
> #
> #-----------------------------------------------------------------------
> # Copyright (c) 2008 Christoph Hellwig.
> @@ -51,8 +53,20 @@
> echo "Clearing features2:"
> xfs_db -x $SCRATCH_DEV -c 'sb' -c 'write features2 0'
>
> +_scratch_mount
> +umount $SCRATCH_MNT
> +echo "Features 2 after mount rw:"
> +xfs_db -x $SCRATCH_DEV -c 'sb' -c 'print features2'
> +
> +#
> +# Clear the normal flags again for the second rount.
> +#
> +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
> Index: xfstests-dev/199.out
> ===================================================================
> --- xfstests-dev.orig/199.out 2009-02-14 15:11:18.000000000 +0000
> +++ xfstests-dev/199.out 2009-02-14 15:11:26.000000000 +0000
> @@ -4,6 +4,10 @@
> bad_features2 = 0x8
> Clearing features2:
> features2 = 0
> +Features 2 after mount rw:
> +features2 = 0x8
> +Clearing features2:
> +features2 = 0
> Features 2 after mount ro and remount rw:
> features2 = 0x8
> *** done
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-14 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-14 16:40 [PATCH] test 199: test features2 fixup for the regular case, too Christoph Hellwig
2009-02-14 20:11 ` Eric Sandeen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox