From: Brian Foster Date: Tue, 13 May 2014 05:27:47 +0000 (+1000) Subject: repair: filter agno/ino repair output for finobt X-Git-Tag: v2022.05.01~3143 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=01fbf447cc8981475e49c0f12e8787e063de8d50;p=xfstests-dev.git repair: filter agno/ino repair output for finobt finobt enabled filesystems can generate new repair output. Update _filter_repair() to ensure specific AG and inode numbers are filtered from test output. Signed-off-by: Brian Foster Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/common/repair b/common/repair index 3e73c1da..46ca9e0c 100644 --- a/common/repair +++ b/common/repair @@ -83,6 +83,8 @@ s/\s+- \d+:\d\d:\d\d:.*\n//g; /^Metadata corruption detected/ && next; /^Metadata CRC error detected/ && next; /^agfl has bad CRC/ && next; +# finobt enabled filesystem output +s/(inode chunk) (\d+)\/(\d+)/AGNO\/INO/; print;' }