From: Darrick J. Wong Date: Sat, 28 Jan 2017 17:38:25 +0000 (-0800) Subject: xfs/030: ignore lost rmapbt blocks X-Git-Tag: v2022.05.01~2192 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6c0aa31ff1744be96d9413beeb8dd5488c2db1d6;p=xfstests-dev.git xfs/030: ignore lost rmapbt blocks When we destroy the AG0 headers, we also lose track of the rmapbt blocks, which causes xfs_repair to complain about their unconnectedness. Filter out the error message from the output. Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/xfs/030 b/tests/xfs/030 index 5c99d9ed..15f41edd 100755 --- a/tests/xfs/030 +++ b/tests/xfs/030 @@ -60,7 +60,8 @@ _check_ag() -e '/^bad agbno AGBNO for finobt/d' \ -e '/^bad agbno AGBNO for rmapbt/d' \ -e '/^bad agbno AGBNO for refcntbt/d' \ - -e '/^Missing reverse-mapping record.*/d' + -e '/^Missing reverse-mapping record.*/d' \ + -e '/^unknown block state, ag 0, block.*/d' done }