From: Darrick J. Wong <djwong@xxxxxxxxxx> Update both of these tests to filter out the new error messages from repair when the inode btree counter feature is enabled. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Reviewed-by: Brian Foster <bfoster@xxxxxxxxxx> --- tests/xfs/010 | 3 ++- tests/xfs/030 | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/xfs/010 b/tests/xfs/010 index 1f9bcdff..95cc2555 100755 --- a/tests/xfs/010 +++ b/tests/xfs/010 @@ -113,7 +113,8 @@ _check_scratch_fs _corrupt_finobt_root $SCRATCH_DEV filter_finobt_repair() { - sed -e '/^agi has bad CRC/d' | \ + sed -e '/^agi has bad CRC/d' \ + -e '/^bad finobt block/d' | \ _filter_repair_lostblocks } diff --git a/tests/xfs/030 b/tests/xfs/030 index 04440f9c..906d9019 100755 --- a/tests/xfs/030 +++ b/tests/xfs/030 @@ -44,6 +44,8 @@ _check_ag() -e '/^bad agbno AGBNO for refcntbt/d' \ -e '/^agf has bad CRC/d' \ -e '/^agi has bad CRC/d' \ + -e '/^bad inobt block count/d' \ + -e '/^bad finobt block count/d' \ -e '/^Missing reverse-mapping record.*/d' \ -e '/^bad levels LEVELS for [a-z]* root.*/d' \ -e '/^unknown block state, ag AGNO, block.*/d'