From 39d7f8a478e7d6da982ae80a1905383e0f61fefc Mon Sep 17 00:00:00 2001 From: Alex Zhuravlev Date: Wed, 7 Feb 2018 07:22:13 +0300 Subject: [PATCH] LU-10624 tests: conf-sanity needs larger ZFS filesystems otherwise some tests can take a lot (like ~2000 seconds for test 106) due to very limited space and short transactions. with the patch 106 passes in ~440 seconds. Change-Id: I0597072cf72315411b7e656b1e87a0fceabb171f Signed-off-by: Alex Zhuravlev Reviewed-on: https://review.whamcloud.com/31192 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Jian Yu --- lustre/tests/conf-sanity.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index 9b480e5..93c6b0b 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -31,7 +31,9 @@ init_test_env $@ STORED_MDSSIZE=$MDSSIZE STORED_OSTSIZE=$OSTSIZE MDSSIZE=200000 +[ $(facet_fstype $SINGLEMDS) = "zfs" ] && MDSSIZE=400000 OSTSIZE=200000 +[ $(facet_fstype ost1) = "zfs" ] && OSTSIZE=400000 fs2mds_HOST=$mds_HOST fs2ost_HOST=$ost_HOST -- 1.8.3.1