From: Darrick J. Wong Date: Wed, 1 Sep 2021 00:12:01 +0000 (-0700) Subject: xfs/449: filter out deprecation warnings from mkfs X-Git-Tag: v2022.05.01~242 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c6c74bb116bdfdb227cbe19946a4a424a4ae735f;p=xfstests-dev.git xfs/449: filter out deprecation warnings from mkfs To avoid regressing this test when testing XFS v4 when mkfs is new enough to whine about creating new deprecated filesystems, filter out the deprecation warning. Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/xfs/449 b/tests/xfs/449 index a3fcd78e..5374bf2f 100755 --- a/tests/xfs/449 +++ b/tests/xfs/449 @@ -23,7 +23,7 @@ _require_scratch_nocheck _require_xfs_spaceman_command "info" _require_command "$XFS_GROWFS_PROG" xfs_growfs -_scratch_mkfs | sed -e '/Discarding/d' > $tmp.mkfs +_scratch_mkfs | sed -e '/Discarding/d' -e '/deprecated/d' > $tmp.mkfs echo MKFS >> $seqres.full cat $tmp.mkfs >> $seqres.full