fstests.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Filipe Manana <fdmanana@gmail.com>
Cc: Eryu Guan <guaneryu@gmail.com>, xfs <linux-xfs@vger.kernel.org>,
	fstests <fstests@vger.kernel.org>, Eryu Guan <guan@eryu.me>
Subject: Re: [PATCH 1/1] misc: tag all tests that examine crash recovery in a loop
Date: Wed, 28 Jul 2021 09:45:53 -0700	[thread overview]
Message-ID: <20210728164553.GA3601443@magnolia> (raw)
In-Reply-To: <CAL3q7H511wY0nHvTuqfnp0ttvvGuFt9Eke2B6cXy_4+JDyJVRw@mail.gmail.com>

On Wed, Jul 28, 2021 at 10:40:29AM +0100, Filipe Manana wrote:
> On Wed, Jul 28, 2021 at 1:10 AM Darrick J. Wong <djwong@kernel.org> wrote:
> >
> > From: Darrick J. Wong <djwong@kernel.org>
> >
> > Given all the recent problems that we've been finding with log recovery,
> > I think it would be useful to create a 'recoveryloop' group so that
> > developers have a convenient way to run every single test that rolls
> > around in a fs shutdown loop looking for subtle errors in recovery.
> >
> > Signed-off-by: Darrick J. Wong <djwong@kernel.org>
> > ---
> >  tests/btrfs/190   |    2 +-
> >  tests/generic/019 |    2 +-
> >  tests/generic/388 |    2 +-
> >  tests/generic/455 |    2 +-
> >  tests/generic/457 |    2 +-
> >  tests/generic/475 |    2 +-
> >  tests/generic/482 |    2 +-
> >  tests/generic/725 |    2 +-
> >  tests/xfs/057     |    2 +-
> >  9 files changed, 9 insertions(+), 9 deletions(-)
> >
> >
> > diff --git a/tests/btrfs/190 b/tests/btrfs/190
> > index 3aa718e2..974438c1 100755
> > --- a/tests/btrfs/190
> > +++ b/tests/btrfs/190
> > @@ -8,7 +8,7 @@
> >  # balance needs to be resumed on mount.
> >  #
> >  . ./common/preamble
> > -_begin_fstest auto quick replay balance qgroup
> > +_begin_fstest auto quick replay balance qgroup recoveryloop
> 
> For btrfs, there are more tests like this: btrfs/172, btrfs/192 and btrfs/206.

I saw those when I was collecting tests for the new group.  I couldn't
tell if they were looping recovery tests, though if you'd like me to add
them to the group I certain will?

--D

> >
> >  # Import common functions.
> >  . ./common/filter
> > diff --git a/tests/generic/019 b/tests/generic/019
> > index b8d025d6..db56dac1 100755
> > --- a/tests/generic/019
> > +++ b/tests/generic/019
> > @@ -8,7 +8,7 @@
> >  # check filesystem consistency at the end.
> >  #
> >  . ./common/preamble
> > -_begin_fstest aio dangerous enospc rw stress
> > +_begin_fstest aio dangerous enospc rw stress recoveryloop
> >
> >  fio_config=$tmp.fio
> >
> > diff --git a/tests/generic/388 b/tests/generic/388
> > index e41712af..9cd737e8 100755
> > --- a/tests/generic/388
> > +++ b/tests/generic/388
> > @@ -15,7 +15,7 @@
> >  # spurious corruption reports and/or mount failures.
> >  #
> >  . ./common/preamble
> > -_begin_fstest shutdown auto log metadata
> > +_begin_fstest shutdown auto log metadata recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> > diff --git a/tests/generic/455 b/tests/generic/455
> > index 62788798..13d326e7 100755
> > --- a/tests/generic/455
> > +++ b/tests/generic/455
> > @@ -7,7 +7,7 @@
> >  # Run fsx with log writes to verify power fail safeness.
> >  #
> >  . ./common/preamble
> > -_begin_fstest auto log replay
> > +_begin_fstest auto log replay recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> > diff --git a/tests/generic/457 b/tests/generic/457
> > index d9e38268..f4fdd81d 100755
> > --- a/tests/generic/457
> > +++ b/tests/generic/457
> > @@ -7,7 +7,7 @@
> >  # Run fsx with log writes on cloned files to verify power fail safeness.
> >  #
> >  . ./common/preamble
> > -_begin_fstest auto log replay clone
> > +_begin_fstest auto log replay clone recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> > diff --git a/tests/generic/475 b/tests/generic/475
> > index 62894491..c426402e 100755
> > --- a/tests/generic/475
> > +++ b/tests/generic/475
> > @@ -12,7 +12,7 @@
> >  # testing efforts.
> >  #
> >  . ./common/preamble
> > -_begin_fstest shutdown auto log metadata eio
> > +_begin_fstest shutdown auto log metadata eio recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> > diff --git a/tests/generic/482 b/tests/generic/482
> > index f26e6fc4..0fadf795 100755
> > --- a/tests/generic/482
> > +++ b/tests/generic/482
> > @@ -9,7 +9,7 @@
> >  # Will do log replay and check the filesystem.
> >  #
> >  . ./common/preamble
> > -_begin_fstest auto metadata replay thin
> > +_begin_fstest auto metadata replay thin recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> > diff --git a/tests/generic/725 b/tests/generic/725
> > index f43bcb37..8bd724e3 100755
> > --- a/tests/generic/725
> > +++ b/tests/generic/725
> > @@ -12,7 +12,7 @@
> >  # in writeback on the host that cause VM guests to fail to recover.
> >  #
> >  . ./common/preamble
> > -_begin_fstest shutdown auto log metadata eio
> > +_begin_fstest shutdown auto log metadata eio recoveryloop
> >
> >  _cleanup()
> >  {
> > diff --git a/tests/xfs/057 b/tests/xfs/057
> > index d4cfa8dc..9fb3f406 100755
> > --- a/tests/xfs/057
> > +++ b/tests/xfs/057
> > @@ -21,7 +21,7 @@
> >  # Note that this test requires a DEBUG mode kernel.
> >  #
> >  . ./common/preamble
> > -_begin_fstest auto log
> > +_begin_fstest auto log recoveryloop
> >
> >  # Override the default cleanup function.
> >  _cleanup()
> >
> 
> 
> -- 
> Filipe David Manana,
> 
> “Whether you think you can, or you think you can't — you're right.”

  reply	other threads:[~2021-07-28 16:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-28  0:10 [PATCHSET 0/1] fstests: tag recovery loop tests Darrick J. Wong
2021-07-28  0:10 ` [PATCH 1/1] misc: tag all tests that examine crash recovery in a loop Darrick J. Wong
2021-07-28  1:18   ` Dave Chinner
2021-07-28  9:40   ` Filipe Manana
2021-07-28 16:45     ` Darrick J. Wong [this message]
2021-07-29 10:18       ` Filipe Manana
2021-07-29 16:53   ` [PATCH v2 " Darrick J. Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210728164553.GA3601443@magnolia \
    --to=djwong@kernel.org \
    --cc=fdmanana@gmail.com \
    --cc=fstests@vger.kernel.org \
    --cc=guan@eryu.me \
    --cc=guaneryu@gmail.com \
    --cc=linux-xfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).