From 96621a053236cd43351b73e5374a82c27a8c6406 Mon Sep 17 00:00:00 2001 From: Anand Jain Date: Tue, 25 Sep 2018 12:24:21 +0800 Subject: [PATCH] generic/449: fix fs size for _scratch_mkfs_sized for btrfs btrfs needs 256m to create btrfs with default options like non mixed block groups. Signed-off-by: Anand Jain Reviewed-by: Qu Wenruo Signed-off-by: Eryu Guan --- tests/generic/449 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/generic/449 b/tests/generic/449 index 88f91865..21b920bf 100755 --- a/tests/generic/449 +++ b/tests/generic/449 @@ -41,7 +41,7 @@ _require_test _require_acls _require_attrs -_scratch_mkfs_sized $((50 * 1024 * 1024)) >> $seqres.full 2>&1 +_scratch_mkfs_sized $((256 * 1024 * 1024)) >> $seqres.full 2>&1 _scratch_mount || _fail "mount failed" TFILE=$SCRATCH_MNT/testfile.$seq @@ -52,7 +52,7 @@ chmod u+rwx $TFILE chmod go-rwx $TFILE # Try to run out of space so setfacl will fail -$XFS_IO_PROG -c "pwrite 0 50m" $TFILE >>$seqres.full 2>&1 +$XFS_IO_PROG -c "pwrite 0 256m" $TFILE >>$seqres.full 2>&1 i=1 # Setting acls on an xfs filesystem will succeed even after running out of