From 14d07b623731233a62a8acd021c8ccdcb2705371 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Wed, 11 Aug 2021 14:49:19 -0600 Subject: [PATCH] LU-12807 tests: fix intermittent runtests failure Occasional runtests failures are seen in full testing on ldiskfs. Increase the llog space limit to 72KB from 50KB due to seeing a regular failures in the 52/64KB range. Test-Parameters: trivial testlist=runtests Signed-off-by: Andreas Dilger Change-Id: I6e272fe9fec21a650110a42efe31a1dc48e35854 Reviewed-on: https://review.whamcloud.com/44614 Tested-by: jenkins Tested-by: Maloo Reviewed-by: James Nunez Reviewed-by: Vikentsi Lapa Reviewed-by: Oleg Drokin --- lustre/tests/test-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 2bc5b70..97a73dc 100755 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -884,7 +884,7 @@ fs_log_size() { local size=0 case $(facet_fstype $facet) in - ldiskfs) size=50;; # largest seen is 44, leave some headroom + ldiskfs) size=72;; # largest seen is 64, leave some headroom # grant_block_size is in bytes, allow at least 2x max blocksize zfs) size=$(lctl get_param osc.$FSNAME*.import | awk '/grant_block_size:/ {print $2/512; exit;}') -- 1.8.3.1