From c6c74bb116bdfdb227cbe19946a4a424a4ae735f Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Tue, 31 Aug 2021 17:12:01 -0700 Subject: [PATCH] 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 --- tests/xfs/449 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5