From: Darrick J. Wong Date: Wed, 4 Jul 2018 04:51:31 +0000 (-0700) Subject: common: filter out quota regeneration messages X-Git-Tag: v2022.05.01~1452 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=76b5a9d535eb9a4de76d5bf352d70d451b76cb69;p=users%2Fhch%2Fxfstests-dev.git common: filter out quota regeneration messages Filter out quota regeneration messages from xfs_repair when we check the filesystem, because the xfs tests that encode xfs_repair output in the golden output will fail when quotas are enabled and the xfs_repair quota messages appear. Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/common/repair b/common/repair index 6bbaffbe0..c94939c9e 100644 --- a/common/repair +++ b/common/repair @@ -81,6 +81,7 @@ s/(superblock) (\d+)/\1 AGNO/; s/(AG \#)(\d+)/\1AGNO/; s/(reset bad sb for ag) (\d+)/\1 AGNO/; s/(unknown block state, ag )(\d+)(, block )(\d+)/\1AGNO\3AGBNO/; +/^Note - quota info will be regenerated on next quota mount.$/ && next; print;' }