mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
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 <anand.jain@oracle.com> Reviewed-by: Qu Wenruo <wqu@suse.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user