From bc222d03dc656c5bac45e39a095dda107d4bf6b1 Mon Sep 17 00:00:00 2001 From: Alexander Boyko Date: Tue, 25 Feb 2025 11:38:34 +0100 Subject: [PATCH] LU-18116 tests: replay-single test_201 timeout 19s is not enough for some system to finish MDT1 umount. Increasing it to 20s + OSTCOUNT seconds. HPE-bug-id: LUS-12689 Test-Parameters: testlist=replay-single Fixes: ffedcbae21f7 ("LU-17809 osp: make disconnect asynchronous") Signed-off-by:Alexander Boyko Change-Id: I900ce107ceb664530bc2165685ba7b88cbd46807 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/58203 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Mikhail Pershin Reviewed-by: Oleg Drokin --- lustre/tests/replay-single.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lustre/tests/replay-single.sh b/lustre/tests/replay-single.sh index 68691c6..c79fd22 100755 --- a/lustre/tests/replay-single.sh +++ b/lustre/tests/replay-single.sh @@ -5345,8 +5345,9 @@ test_201() { error "mount mds2 failed" echo "Umount took $duration seconds" - #Valid timeout is 8 for MDTs + 8 for OSTs + 4 some for other umount - (( duration < 20 )) || error "Cascading timeouts on disconnect" + # Valid timeout is 8s for MDT0000-lwp-MDT0001 + # + 8s for osp devices MDTs/OSTs + (4s + OSTCOUNTs) for other umount + (( duration <= (20 + OSTCOUNT) )) || error "Cascading timeouts on disconnect" } run_test 201 "MDT umount cascading disconnects timeouts" -- 1.8.3.1