mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
filter: xfs_repair emits new corruption messagse
xfs_repair now dumps metadata and CRC corruption information to the output from the verifier infrastrcuture. Filter this out so that it doesn't cause spurious test failures such as in xfs/030 and xfs/033. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
committed by
Dave Chinner
parent
9d7807d898
commit
03227f9f50
@@ -80,6 +80,9 @@ s/\s+- \d+:\d\d:\d\d:.*\n//g;
|
|||||||
# crc enabled filesystem output
|
# crc enabled filesystem output
|
||||||
/XFS_CORRUPTION_ERROR/ && next;
|
/XFS_CORRUPTION_ERROR/ && next;
|
||||||
/^bad uuid/ && next;
|
/^bad uuid/ && next;
|
||||||
|
/^Metadata corruption detected/ && next;
|
||||||
|
/^Metadata CRC error detected/ && next;
|
||||||
|
/^agfl has bad CRC/ && next;
|
||||||
print;'
|
print;'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user