From bbfa08730c1ec051134e16db04691d0dffe13949 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Tue, 17 Jan 2023 16:42:13 -0800 Subject: [PATCH] xfs: fix dax inode flag test failures Filter out the DAX inode flag because it's causing problems with this test. Signed-off-by: Darrick J. Wong Reviewed-by: Xiao Yang Signed-off-by: Zorro Lang --- tests/xfs/128 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xfs/128 b/tests/xfs/128 index 5591342d..8c1663c6 100755 --- a/tests/xfs/128 +++ b/tests/xfs/128 @@ -81,7 +81,7 @@ c13=$(_md5_checksum $testdir/file3) c14=$(_md5_checksum $testdir/file4) echo "Defragment" -lsattr -l $testdir/ | _filter_scratch | _filter_spaces +lsattr -l $testdir/ | _filter_scratch | _filter_spaces | sed -e 's/DAX/---/g' $XFS_FSR_PROG -v -d $testdir/file1 >> $seqres.full $XFS_FSR_PROG -v -d $testdir/file2 >> $seqres.full # fsr probably breaks the link $XFS_FSR_PROG -v -d $testdir/file3 >> $seqres.full # fsr probably breaks the link -- 2.39.5