From 2f194e4e820e6acfcfdadf9f488a162b22db9d86 Mon Sep 17 00:00:00 2001 From: Mark Fasheh Date: Wed, 30 May 2018 00:34:30 +0200 Subject: [PATCH] generic/009: don't run for btrfs if PAGE_SIZE > 4096 Btrfs has the same issue as XFS here in that the extent layout on a > 4096 page size system will not match what is reflected in the test output. Signed-off-by: Mark Fasheh Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- tests/generic/009 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/generic/009 b/tests/generic/009 index 797def5c..d9e349cd 100755 --- a/tests/generic/009 +++ b/tests/generic/009 @@ -56,12 +56,12 @@ if [ "$FSTYP" = "ext4" ]; then _ext4_disable_extent_zeroout fi -# When PAGE_SIZE > 4096 xfs extent layout is different so it would not match -# the output. -if [ "$FSTYP" = "xfs" ]; then +# When PAGE_SIZE > 4096 some filesystems extent layout is different so +# it would not match the output. +if [ "$FSTYP" = "xfs" -o "$FSTYP" = "btrfs" ]; then PAGE_SIZE=`getconf PAGE_SIZE` if [ $PAGE_SIZE -gt 4096 ]; then - _notrun "Not supported on xfs with page size > 4096" + _notrun "Not supported on $FSTYP with page size > 4096" fi fi -- 2.39.5