From 626231c289b820bc34e6e8c33d3c878cf8ef8bdc Mon Sep 17 00:00:00 2001 From: Anand Jain Date: Tue, 25 Sep 2018 12:24:17 +0800 Subject: [PATCH] generic/083: fix btrfs fs size for default mode btrfs needs at least 256mb to create a FS with the defaults options. Signed-off-by: Anand Jain Reviewed-by: Qu Wenruo Signed-off-by: Eryu Guan --- tests/generic/083 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/generic/083 b/tests/generic/083 index 63d96ba2..eabff02a 100755 --- a/tests/generic/083 +++ b/tests/generic/083 @@ -71,7 +71,7 @@ workout() echo "*** test out-of-space handling for random write operations" -filesize=`expr 100 \* 1024 \* 1024` +filesize=`expr 256 \* 1024 \* 1024` agcount=6 numprocs=15 numops=1500 -- 2.39.5