Message ID | 157915144176.2374854.14349580805612117354.stgit@magnolia (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fstests: random fixes | expand |
On Wed, Jan 15, 2020 at 09:10:41PM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong <darrick.wong@oracle.com> > > xfsprogs 5.4 prints "Discarding..." if the disk supports the trim > command. Filter this out of the output because xfs_info and friends > won't print that out. We really should drop that message as it is breaking way too many things and isn't actually useful.
diff --git a/tests/xfs/449 b/tests/xfs/449 index 7aae1545..83c3c493 100755 --- a/tests/xfs/449 +++ b/tests/xfs/449 @@ -39,7 +39,7 @@ _require_scratch_nocheck _require_xfs_spaceman_command "info" _require_command "$XFS_GROWFS_PROG" xfs_growfs -_scratch_mkfs > $tmp.mkfs +_scratch_mkfs | sed -e '/Discarding/d' > $tmp.mkfs echo MKFS >> $seqres.full cat $tmp.mkfs >> $seqres.full